Add partners section

This commit is contained in:
2025-11-02 17:26:51 -05:00
parent 602eabc7ba
commit c63b15d5d6
9 changed files with 212 additions and 15 deletions

View 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>
);
}