Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
fix(components): remove placeholder nav links from main nav
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmoin committed Apr 25, 2024
1 parent 09b39fa commit 3b5e2e9
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions src/components/main-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function MainNav() {
</Link>
<nav className="flex items-center gap-4 text-sm lg:gap-6">
<Link
href="#"
href="/"
className={cn(
"transition-colors hover:text-foreground/80",
pathname === "/" ? "text-foreground" : "text-foreground/60"
Expand All @@ -39,47 +39,6 @@ export function MainNav() {
>
History
</Link>
<Link
href="#"
className={cn(
"transition-colors hover:text-foreground/80",
pathname?.startsWith("/amorpha/themes")
? "text-foreground"
: "text-foreground/60"
)}
>
Is
</Link>
<Link
href="#"
className={cn(
"transition-colors hover:text-foreground/80",
pathname?.startsWith("/amorpha/examples")
? "text-foreground"
: "text-foreground/60"
)}
>
Work
</Link>
<Link
href="#"
className={cn(
"transition-colors hover:text-foreground/80",
pathname?.startsWith("/amorpha/blocks")
? "text-foreground"
: "text-foreground/60"
)}
>
In
</Link>
<Link
href="#"
className={cn(
"hidden text-foreground/60 transition-colors hover:text-foreground/80 lg:block"
)}
>
Progress
</Link>
</nav>
</div>
);
Expand Down

0 comments on commit 3b5e2e9

Please sign in to comment.