in src/app/layout.tsx [9:19]
export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( <html lang="en"> <body className={`antialiased`}>{children}</body> </html> ); }