Implement beginning of footer component

Create basis of footer component. Some changes needed to put proper content in but theming, styling is all done.
This commit is contained in:
Nick Bland
2022-05-14 16:50:45 +10:00
parent 3e793a5985
commit 261f0bb07f
2 changed files with 31 additions and 1 deletions
+6 -1
View File
@@ -1,5 +1,6 @@
import type {NextPage} from 'next';
import NavBar from "../components/navbar";
import {Footer} from "../components/footer"
const Home: NextPage = () => {
return (
@@ -7,9 +8,13 @@ const Home: NextPage = () => {
<NavBar title="Home | nickbland.dev"></NavBar>
<main className="">
<h1>Test Comment</h1>
{/* MAIN BANNER SECTION BELOW */}
<div className="">
</div>
</main>
<Footer></Footer>
</div>
)
}