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 ( +
+ +
+ ); +} \ 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 */} +
+ +
+ ) }