diff --git a/client/src/components/navigation/header.tsx b/client/src/components/navigation/header.tsx index dfbe4e5..701affc 100644 --- a/client/src/components/navigation/header.tsx +++ b/client/src/components/navigation/header.tsx @@ -17,8 +17,8 @@ export default function Header() { const isActive = (path: string) => { return location === path - ? "text-teal" - : "text-gray-700 hover:text-teal"; + ? "text-white" + : "text-white text-opacity-80 hover:text-white"; }; const navLinks = [ @@ -29,7 +29,7 @@ export default function Header() { ]; return ( -
+
@@ -52,12 +52,12 @@ export default function Header() {
{user ? ( <> - + Hi, {user.fullName || user.username}