import '../styles/globals.css'; import { Noto_Serif } from 'next/font/google'; const notoSerif = Noto_Serif({ subsets: ['latin'], variable: '--font-serif' }); export default function RootLayout({ children }: React.PropsWithChildren) { return
{children}
; }