Rocky_Mountain_Vending/app/style-guide/layout.tsx

19 lines
390 B
TypeScript

import type { Metadata } from "next"
import type { ReactNode } from "react"
export const metadata: Metadata = {
title: "Style Guide | Rocky Mountain Vending",
description: "Internal style guide and component reference.",
robots: {
index: false,
follow: false,
},
}
export default function StyleGuideLayout({
children,
}: {
children: ReactNode
}) {
return children
}