15 lines
355 B
TypeScript
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>
|
|
);
|
|
}
|