added richtig viel sachen

This commit is contained in:
Janis
2022-12-18 22:37:01 +01:00
parent bb49f58ace
commit 073a1bf728
57 changed files with 10394 additions and 55 deletions

View File

@@ -1,11 +1,20 @@
import "../styles/globals.scss";
import Nav from "./Nav";
export default function Layout({ children }: { children: React.ReactNode }) {
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<body>
<Nav />
<main>{children}</main>
</body>
<html>
<head></head>
<body>
<header>
<Nav />
</header>
<main>{children}</main>
</body>
</html>
);
}