styling, fonts & take notes

This commit is contained in:
Michi 2025-04-19 10:56:29 +02:00
parent 968a0b7de9
commit 3ba540fb87
4 changed files with 39 additions and 3 deletions

View file

@ -1,3 +1,6 @@
import '@/app/ui/global.css';
import {inter} from '@/app/ui/fonts';
export default function RootLayout({
children,
}: {
@ -5,7 +8,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}</body>
<body className={`${inter.className} antialiased`}>{children}</body>
</html>
);
}