feat: finished with html (pretty much) started with css

This commit is contained in:
moonleay 2023-10-18 20:34:15 +02:00
parent 212d3a25a5
commit 2f112edb29
12 changed files with 141 additions and 58 deletions

View file

@ -1,8 +1,9 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import type {Metadata} from 'next'
import {Inter} from 'next/font/google'
import React from "react";
import {Footer, NavBar} from "@/app/util/wrapping_objects";
import styles from "./util/wrapping_objects.module.css";
const inter = Inter({ subsets: ['latin'] })
@ -20,7 +21,9 @@ export default function RootLayout({
<html lang="en">
<body className={inter.className}>
<NavBar/>
{children}
<div className={styles.contentDiv}>
{children}
</div>
<Footer/>
</body>
</html>