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:
parent
589261365d
commit
c8078e09b7
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue