mirror of
https://github.com/michivonah/nextjs.git
synced 2025-12-22 22:16:28 +01:00
styling, fonts & take notes
This commit is contained in:
parent
968a0b7de9
commit
3ba540fb87
4 changed files with 39 additions and 3 deletions
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue