Add font to app

This commit is contained in:
2025-10-16 10:00:07 +02:00
parent 5392c47452
commit 35c4317925

View File

@@ -28,11 +28,11 @@ export default function RootLayout({
}>) { }>) {
return ( return (
<html lang="en"> <html lang="en">
<body className="relative text-white"> <body
<div className="app-background"/> className={`relative text-white ${geistSans.className} ${geistMono.className}`}
<div className="relative z-10 h-screen overflow-y-auto"> >
{children} <div className="app-background" />
</div> <div className="relative z-10 h-screen overflow-y-auto">{children}</div>
</body> </body>
</html> </html>
); );