From f264fc8680dc4baf7f3ae0b06cc4737a14d518c4 Mon Sep 17 00:00:00 2001 From: mpuchstein Date: Wed, 2 Jul 2025 17:35:24 +0200 Subject: [PATCH] trying to implement the navbar --- src/components/Navbar.tsx | 3 +-- src/index.css | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 136c435..5ce84f1 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -13,8 +13,7 @@ export default function Navbar() { bg-white border-t border-gray-200 /* top border for separation */ py-2 /* vertical padding */ shadow-lg /* subtle drop shadow */ - sm:hidden /* hide on small screens? remove if not needed */ - "> + "> Home diff --git a/src/index.css b/src/index.css index 08a3ac9..fe8b8ca 100644 --- a/src/index.css +++ b/src/index.css @@ -1,3 +1,7 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + :root { font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5;