From 39be7de9c0a590462f25153dc018f667a5e86106 Mon Sep 17 00:00:00 2001 From: theoleuthardt Date: Sat, 8 Feb 2025 14:13:04 +0100 Subject: [PATCH] feat: start page footer, general styling --- src/app/page.tsx | 8 ++++++-- src/components/Footer.tsx | 30 ++++++++++++++++++++++++++++++ src/components/Navbar.tsx | 11 +++++++---- 3 files changed, 43 insertions(+), 6 deletions(-) create mode 100644 src/components/Footer.tsx 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 ( -
+