Skip to content

Commit

Permalink
Update Navbar.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
KyngKai909 authored Apr 6, 2024
1 parent 9e4b622 commit 8f117c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/nextjs/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ const Navbar = () => {
>
All
</Link>
<Link className={type !== "sale" ? "opacity-40" : ""} href="/property-explorer?type=sale">
<Link className={type !== "sale" ? "opacity-30" : ""} href="/property-explorer?type=sale">
For Sale
</Link>
<Link className={type !== "lease" ? "opacity-40" : ""} href="/property-explorer?type=lease">
<Link className={type !== "lease" ? "opacity-30" : ""} href="/property-explorer?type=lease">
For Lease
</Link>
<Link className={pathname !== "/agent-explorer" ? "opacity-40" : ""} href="/agent-explorer">
<Link className={pathname !== "/agent-explorer" ? "opacity-30" : ""} href="/agent-explorer">
Agent Directory
</Link>
</div>
Expand Down

0 comments on commit 8f117c3

Please sign in to comment.