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:
parent
b77cf35c02
commit
c0776a33fa
|
|
@ -14,19 +14,22 @@ export function Header() {
|
||||||
height={48}
|
height={48}
|
||||||
className="h-12 w-auto"
|
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>
|
</Link>
|
||||||
|
|
||||||
<nav className="hidden md:flex items-center gap-8">
|
<nav className="hidden md:flex items-center gap-8">
|
||||||
<Link href="/#about" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
<Link href="/#about" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
||||||
About
|
About
|
||||||
</Link>
|
</Link>
|
||||||
<Link href="/#commons" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
<Link href="/research" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
||||||
What are Crypto Commons
|
Research
|
||||||
</Link>
|
</Link>
|
||||||
<Link href="/events" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
<Link href="/events" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
||||||
Events
|
Events
|
||||||
</Link>
|
</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">
|
<Link href="/#contact" className="text-sm text-muted-foreground hover:text-foreground transition-colors">
|
||||||
Contact
|
Contact
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue