Skip to content

Commit

Permalink
Merge branch 'main' into RS/NewsAndEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
ruilopesm authored Aug 24, 2023
2 parents 40bcbdd + 3400050 commit db6ed1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Navbar() {
<Link
key={title}
className="border-b-2 border-transparent pb-4 text-sm text-black hover:border-cesium-orange hover:text-cesium-orange"
href={`/${title.toLowerCase()}`}
href={title === "HOME" ? "/" : `/${title.toLowerCase()}`}
>
{title}
</Link>
Expand Down

0 comments on commit db6ed1e

Please sign in to comment.