diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index e743475..66540a7 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -1,19 +1,74 @@ "use client"; -import Calendar from "@/components/events/Calendar"; -import MonthlyEvents from "@/components/events/MonthlyEvents"; +import Calendar from "@/components/events/CalendarMonthView/Calendar"; +import FiveDayCalendar from "@/components/events/CalendarWeekView/WeekViewCalendar"; +import MonthlyEvents from "@/components/events/CalendarListView/MonthlyEvents"; +import { FaRegCalendarAlt, FaList } from "react-icons/fa"; import Footer from "@/components/Footer"; +import { Clock, Calendar as CalendarIcon, List } from "lucide-react"; +import { useState } from "react"; export default function Events() { + const [calendarView, setCalendarView] = useState<"month" | "day" | "list">( + "month", + ); + return ( <>
-
-
- - +
+

Events

+

+ Discover everything you need to know about upcoming{" "} + club events and{" "} + exclusive opportunities. +

+

Views:

+ + {/* buttons to change view */} +
+ + + +
+ {/* end buttons */} + + {/* Views */} + {calendarView === "day" && } + {calendarView === "month" && } + {calendarView === "list" && } +
-