2024-08-11 12:34:16 +02:00
|
|
|
import '@/app/ui/global.css'
|
|
|
|
import { inter } from '@/app/ui/fonts';
|
|
|
|
|
2024-08-11 12:03:11 +02:00
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: {
|
|
|
|
children: React.ReactNode;
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2024-08-11 12:34:16 +02:00
|
|
|
<body className={`${inter.className} antialiased`}>{children}</body>
|
2024-08-11 12:03:11 +02:00
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|