2024-07-22 01:41:17 +02:00
|
|
|
import "@fontsource/roboto/300.css";
|
|
|
|
import "@fontsource/roboto/400.css";
|
|
|
|
import "@fontsource/roboto/500.css";
|
|
|
|
import "@fontsource/roboto/700.css";
|
2024-07-30 02:39:44 +02:00
|
|
|
import { createTheme, CssBaseline, ThemeProvider } from "@mui/material";
|
|
|
|
import { Metadata, Viewport } from "next";
|
|
|
|
import Head from "next/head";
|
2024-07-22 01:41:17 +02:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2024-07-30 02:39:44 +02:00
|
|
|
<Head>
|
|
|
|
<link rel="manifest" href="/manifest.json" />
|
|
|
|
</Head>
|
2024-07-22 01:41:17 +02:00
|
|
|
<body>{children}</body>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|