From 261f0bb07ffb016e4ca53f217cb6e3c64a9c94da Mon Sep 17 00:00:00 2001 From: Nick Bland Date: Sat, 14 May 2022 16:50:45 +1000 Subject: [PATCH] Implement beginning of footer component Create basis of footer component. Some changes needed to put proper content in but theming, styling is all done. --- components/footer.tsx | 25 +++++++++++++++++++++++++ pages/index.tsx | 7 ++++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 components/footer.tsx diff --git a/components/footer.tsx b/components/footer.tsx new file mode 100644 index 0000000..c0d06f0 --- /dev/null +++ b/components/footer.tsx @@ -0,0 +1,25 @@ +import Link from "next/link"; +import {IoLogoGithub, IoLogoGitlab} from "react-icons/io5"; + +export const Footer = () => { + return ( +
+
+
+ Home + Home 2 + Home 3 +
+
+
+ + +
+
+
+

Made with ❤️ by Nick Bland

+
+
+
+ ); +} \ No newline at end of file diff --git a/pages/index.tsx b/pages/index.tsx index d63d8a6..c830131 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -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 = () => {
-

Test Comment

+ {/* MAIN BANNER SECTION BELOW */} +
+ +
+ ) }