import './globals.css' import { Fira_Code } from '@next/font/google' const fira = Fira_Code({ variable: '--font-fira' }) export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {/* will contain the components returned by the nearest parent head.tsx. Find out more at https://beta.nextjs.org/docs/api-reference/file-conventions/head */} {children} ) }