Rocky_Mountain_Vending/app/seaga-hy900-support/layout.tsx

16 lines
394 B
TypeScript

import type { Metadata } from "next"
import type { ReactNode } from "react"
export const metadata: Metadata = {
title: "Seaga HY900 Support | Rocky Mountain Vending",
description:
"Watch Seaga HY900 support videos and access the owner manual from Rocky Mountain Vending.",
}
export default function SeagaSupportLayout({
children,
}: {
children: ReactNode
}) {
return children
}