Vocal-rank/components/header.tsx
2025-02-10 09:03:50 +08:00

11 lines
285 B
TypeScript

export default function Header() {
return (
<header className="bg-primary text-primary-foreground">
<div className="container mx-auto px-4 py-4 flex justify-between items-center">
<h1 className="text-2xl font-bold">Vocal Rank</h1>
</div>
</header>
)
}