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 }