16 lines
482 B
TypeScript
16 lines
482 B
TypeScript
export function Navbar() {
|
|
return (
|
|
<nav className="flex justify-between items-center p-4 px-6 shadow-md">
|
|
<h1 className="text-2xl font-bold font-alex-brush">Great Music LLM</h1>
|
|
<div className="hidden sm:flex gap-2">
|
|
<button className="bg-blue-500 text-white px-4 py-2 rounded">
|
|
Button 1
|
|
</button>
|
|
<button className="bg-green-500 text-white px-4 py-2 rounded">
|
|
Button 2
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
);
|
|
}
|