website-2/pages/index.tsx
Nick Bland 261f0bb07f
Implement beginning of footer component
Create basis of footer component. Some changes needed to put proper content in but theming, styling is all done.
2022-05-14 16:50:45 +10:00

23 lines
508 B
TypeScript

import type {NextPage} from 'next';
import NavBar from "../components/navbar";
import {Footer} from "../components/footer"
const Home: NextPage = () => {
return (
<div className="">
<NavBar title="Home | nickbland.dev"></NavBar>
<main className="">
{/* MAIN BANNER SECTION BELOW */}
<div className="">
</div>
</main>
<Footer></Footer>
</div>
)
}
export default Home