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 (
<html lang="en">
<body className="relative text-white">
<div className="app-background"/>
<div className="relative z-10 h-screen overflow-y-auto">
{children}
</div>
<body
className={`relative text-white ${geistSans.className} ${geistMono.className}`}
>
<div className="app-background" />
<div className="relative z-10 h-screen overflow-y-auto">{children}</div>
</body>
</html>
);