11 lines
285 B
TypeScript
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>
|
|
)
|
|
}
|
|
|