Make the website header links more prominent and easier to read for all users

Update header.tsx to increase font-weight and size of navigation links using Tailwind CSS.

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/b459d043-2f67-483a-a753-fe7e2b5a07c4.jpg
This commit is contained in:
JeffEmmett 2025-06-13 19:34:14 +00:00
parent 589261365d
commit c8078e09b7
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export default function Header() {
<Link
key={link.path}
href={link.path}
className={`transition-colors duration-200 font-raleway font-medium ${isActive(link.path)}`}
className={`transition-colors duration-200 font-raleway font-bold text-lg ${isActive(link.path)}`}
>
{link.name}
</Link>