import type { ReactNode } from 'react'; export const metadata = { title: 'Mosaic', description: 'Mosaic Stack Dashboard', }; export default function RootLayout({ children }: { children: ReactNode }): ReactNode { return ( {children} ); }