in app/layout.tsx [29:39]
export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( <html lang="en"> <body className={openSans.className}>{children}</body> </html> ); }