prototype 1.0
This commit is contained in:
16
src/app/calendar/page.tsx
Normal file
16
src/app/calendar/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user