From 4b0c6025ad4b6b761273b5b4565740953650b648 Mon Sep 17 00:00:00 2001 From: Tim Howitz Date: Mon, 17 Mar 2025 12:43:28 +0000 Subject: [PATCH] Added logo --- src/app/page.tsx | 2 +- src/components/{tabbar_dd.tsx => navbar.tsx} | 9 +++++++-- src/components/tabbar.tsx | 20 -------------------- tailwind.config.ts | 2 +- 4 files changed, 9 insertions(+), 24 deletions(-) rename src/components/{tabbar_dd.tsx => navbar.tsx} (88%) delete mode 100644 src/components/tabbar.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index a1a2321..69361fe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,5 @@ import Image from "next/image"; -import Navbar from "@/components/tabbar_dd"; +import Navbar from "@/components/navbar"; export default function Home() { return ( diff --git a/src/components/tabbar_dd.tsx b/src/components/navbar.tsx similarity index 88% rename from src/components/tabbar_dd.tsx rename to src/components/navbar.tsx index f29ab70..e123257 100644 --- a/src/components/tabbar_dd.tsx +++ b/src/components/navbar.tsx @@ -1,5 +1,7 @@ "use client" +import Image from "next/image"; +import Link from "next/link"; import { useState, useEffect, useRef} from "react"; export default function Navbar() { @@ -33,8 +35,11 @@ export default function Navbar() { return (
-
-

Logo

+
+ + Background Image + + {/*

Logo

*/}
diff --git a/src/components/tabbar.tsx b/src/components/tabbar.tsx deleted file mode 100644 index 6981de0..0000000 --- a/src/components/tabbar.tsx +++ /dev/null @@ -1,20 +0,0 @@ -export default function Navbar(){ - return ( -
-
-

Logo

-
-
- - - - - -
-
-
-

User

-
-
- ) -} diff --git a/tailwind.config.ts b/tailwind.config.ts index cfedc40..63a6560 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -21,7 +21,7 @@ export default { plugin(({ addUtilities }) => { addUtilities({ html: { - fontSize: "10px", + fontSize: "16px", fontFamily: '"Inter", system-ui, sans-serif', }, });