NeahNew/components/navbar.tsx
2025-05-03 14:17:46 +02:00

15 lines
355 B
TypeScript

import { CalendarButton } from "@/components/navbar/calendar-button";
// ... existing imports ...
export function Navbar() {
return (
<header className="...">
<div className="flex items-center gap-2">
{/* ... existing buttons ... */}
<CalendarButton />
{/* ... other buttons ... */}
</div>
</header>
);
}