website-builde / components /Header.tsx
Daviddolor's picture
Single-process Chromium, fixed visual-polish prompt, Docker config for HF Space
ec675f2
Raw
History Blame Contribute Delete
465 Bytes
export default function Header() {
return (
<header className="w-full border-b bg-white">
<nav className="mx-auto flex max-w-7xl items-center justify-between px-6 py-4">
<div className="text-xl font-bold">
GPT OS 120
</div>
<div className="flex gap-6 text-sm">
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact">Contact</a>
</div>
</nav>
</header>
)
}