From 4fd8021f85e1bade00c3ba47f7fe408a37d064e4 Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Fri, 13 Jun 2025 19:37:12 +0000 Subject: [PATCH] Update the website header to reflect the brand's signature color Updates header background to teal and inverts login/signup button colors. Replit-Commit-Author: Agent Replit-Commit-Session-Id: e524de2d-167c-4bad-8c36-b012186a210b Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/ffaddc67-18f9-4349-a55e-999154ca7030.jpg --- client/src/components/navigation/header.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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}