Add partners section
This commit is contained in:
15
src/components/navbar/navbar.tsx
Normal file
15
src/components/navbar/navbar.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user