Spaces:
Sleeping
Sleeping
| 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> | |
| ) | |
| } | |