prototype 1.0

This commit is contained in:
2026-05-07 17:29:59 +03:00
parent fde574c7a0
commit 2f69ac14c5
291 changed files with 34857 additions and 5683 deletions

16
src/app/calendar/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { BaseLayout } from "@/components/layouts/base-layout"
import { Calendar } from "./components/calendar"
import { events, eventDates } from "./data"
export default function CalendarPage() {
return (
<BaseLayout
title="Calendar"
description="Manage your schedule and events"
>
<div className="px-4 lg:px-6">
<Calendar events={events} eventDates={eventDates} />
</div>
</BaseLayout>
)
}