Files
gitlab-instance-0a899031_no…/components/layout/site-header.tsx
2026-07-11 11:25:50 -05:00

14 lines
426 B
TypeScript

import Link from "next/link";
export function SiteHeader() {
return (
<header className="sticky top-0 z-50 border-b border-neutral-200/80 bg-white/90 backdrop-blur-sm">
<div className="mx-auto flex h-14 max-w-lg items-center px-4 sm:h-16 sm:max-w-2xl sm:px-6 lg:max-w-4xl">
<Link href="/" className="text-lg font-bold text-neutral-900">
Nomadro
</Link>
</div>
</header>
);
}