This commit is contained in:
Janis
2022-12-20 02:18:21 +01:00
parent 26f8683f69
commit 06c04efcfc
17 changed files with 395 additions and 43 deletions

View File

@@ -1,5 +1,6 @@
import "../styles/globals.scss";
import Nav from "./Nav";
import Footer from "./Footer";
export default function RootLayout({
children,
@@ -14,6 +15,7 @@ export default function RootLayout({
<Nav />
</header>
<main>{children}</main>
<Footer />
</body>
</html>
);