trying to implement the navbar

This commit is contained in:
2025-07-02 17:35:24 +02:00
parent b732c1edd7
commit f264fc8680
2 changed files with 5 additions and 2 deletions

View File

@@ -13,8 +13,7 @@ export default function Navbar() {
bg-white border-t border-gray-200 /* top border for separation */ bg-white border-t border-gray-200 /* top border for separation */
py-2 /* vertical padding */ py-2 /* vertical padding */
shadow-lg /* subtle drop shadow */ shadow-lg /* subtle drop shadow */
sm:hidden /* hide on small screens? remove if not needed */ ">
">
<NavLink to="/" className={linkClasses}> <NavLink to="/" className={linkClasses}>
Home Home
</NavLink> </NavLink>

View File

@@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root { :root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5; line-height: 1.5;