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