feat: add Fediverse nav link

This commit is contained in:
2026-05-27 23:25:19 +02:00
parent 0164b03e5c
commit 904dd5f1a0

View File

@@ -18,6 +18,15 @@ export function MainNav() {
> >
Discover Discover
</Link> </Link>
<Link
href="/about/fediverse"
className={cn(
"transition-colors hover:text-foreground/80",
pathname === "/about/fediverse" ? "text-foreground" : "text-foreground/60"
)}
>
Fediverse
</Link>
<SearchInput /> <SearchInput />
</nav> </nav>
); );