Remove the animated underline on header nav links

Nav links now use the same plain colour transition as the mobile menu
and footer links.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016jWbNNJLksC1QG8z8845FX
This commit is contained in:
Rami Bitar
2026-08-01 17:36:17 -04:00
co-authored by Claude Opus 5
parent 489dfd5e97
commit 2377f5c3d2
+1 -1
View File
@@ -103,7 +103,7 @@ const Header: React.FC<HeaderProps> = ({
<Link
key={index}
href={link.url}
className="text-foreground relative after:absolute after:bottom-[-4px] after:left-1/2 after:-translate-x-1/2 after:h-px after:w-0 after:bg-foreground after:transition-[width] after:duration-300 hover:after:w-full"
className="text-foreground hover:text-muted-foreground transition-colors"
>
{link.label}
</Link>