import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Stan Runge', description: 'Stan Runge', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }