Files
openhuman/lander/app/components/Navigation.tsx
T
2026-03-20 17:06:10 -07:00

36 lines
1.5 KiB
TypeScript

import Link from 'next/link';
export default function Navigation() {
return (
<nav className="fixed top-0 left-1/2 z-50 w-full max-w-[1280px] -translate-x-1/2 border-x border-b border-zinc-800 bg-zinc-950/80 backdrop-blur-sm">
<div className="px-6 sm:px-8">
<div className="flex h-16 items-center justify-between">
<Link href="/" className="text-xl font-semibold text-white">
OpenHuman
</Link>
<div className="flex items-center gap-4">
<Link
href="/"
className="text-sm text-zinc-400 transition-colors hover:text-white"
>
Home
</Link>
<Link
href="/pricing"
className="text-sm text-zinc-400 transition-colors hover:text-white"
>
Pricing
</Link>
<Link
href="/downloads"
className="rounded-lg bg-white px-4 py-2 text-sm font-semibold text-zinc-950 transition-colors hover:bg-zinc-200"
>
Download
</Link>
</div>
</div>
</div>
</nav>
);
}