Blocks are open for contributions
Building Blocks for the Web
Clean, modern building blocks. Copy and paste into your apps. Works with all React frameworks. Open Source. Free forever.
app/fullscreen-calendar/page.tsx
import { FullScreenCalendar } from "@/components/fullscreen-calendar"
export default function Page() {
return (
<div className="flex h-screen flex-1 flex-col">
<FullScreenCalendar />
</div>
)
}