Rename Header to NavBar and add it to the bottom too

This commit is contained in:
2022-07-03 21:39:29 +03:00
parent d16f34a1ea
commit 136b775c2b
7 changed files with 15 additions and 24 deletions

View File

@@ -2,17 +2,18 @@ import '../styles/globals.scss';
import '../styles/transitions.scss';
import type { AppProps } from 'next/app';
import Footer from './components/Footer';
import Header from './components/Header';
import NavBar from './components/NavBar';
import { Logo } from './components/Logo';
function Runosaari({ Component, pageProps }: AppProps) {
return (
<>
<Header />
<NavBar />
<Logo />
<main>
<Component {...pageProps} />
</main>
<NavBar />
<Footer />
</>
);