feat: restore navigation links in header

Add back About, Research, Events, Sponsors, and Contact links.

#VERCEL_SKIP

Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
v0 2025-11-10 00:18:16 +00:00
parent b77cf35c02
commit c0776a33fa
1 changed files with 6 additions and 3 deletions

View File

@ -14,19 +14,22 @@ export function Header() {
height={48}
className="h-12 w-auto"
/>
<div className="text-2xl font-mono font-bold tracking-tight">Crypto Commons Association</div>
<div className="text-2xl font-mono font-bold tracking-tight">CCA</div>
</Link>
<nav className="hidden md:flex items-center gap-8">
<Link href="/#about" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
About
</Link>
<Link href="/#commons" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
What are Crypto Commons
<Link href="/research" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
Research
</Link>
<Link href="/events" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
Events
</Link>
<Link href="/sponsors" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
Sponsors
</Link>
<Link href="/#contact" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
Contact
</Link>