import type { ReactNode } from 'react'; import { Outfit, Fira_Code } from 'next/font/google'; import './globals.css'; const outfit = Outfit({ subsets: ['latin'], variable: '--font-sans', display: 'swap', weight: ['300', '400', '500', '600', '700'], }); const firaCode = Fira_Code({ subsets: ['latin'], variable: '--font-mono', display: 'swap', weight: ['400', '500', '700'], }); export const metadata = { title: 'Mosaic', description: 'Mosaic Stack Dashboard', }; export default function RootLayout({ children }: { children: ReactNode }): React.ReactElement { return ( {children} ); }