import { HeaderNavigation } from "@/components/ui/header-navigation";
export default function Default() {
return (
<div className="bg-background text-foreground font-serif w-full flex items-center justify-center px-6 py-8">
<div className="w-full max-w-[960px]">
<HeaderNavigation
title="Gymnopédies"
menuItems={[
{ name: "Home", onClick: () => {} },
{ name: "Essays", onClick: () => {} },
{ name: "Archive" },
{ name: "About", onClick: () => {} },
]}
currentIndex={2}
/>
</div>
</div>
);
}