feat: add Fediverse nav link

This commit is contained in:
2026-05-27 23:25:19 +02:00
parent d831784489
commit c085067318

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>
); );