diff --git a/src/app/page.tsx b/src/app/page.tsx index c7488eb..8dc549f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,5 @@ import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; import { toolLinks } from "@/constants"; export default function Home() { @@ -6,17 +7,20 @@ export default function Home() {
-
+
{toolLinks.map((tool) => ( ))}
+
); } diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..087e34c --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,30 @@ +import React from "react"; + +interface NavProps { + className?: string; +} + +const navbar = (props: NavProps) => { + return ( +
+
+ made by + + Domi + + and + + Theo. + +
+
+ ); +}; + +export default navbar; diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index f357f4d..b0a267f 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -9,7 +9,7 @@ interface NavProps { const navbar = (props: NavProps) => { return ( -
+