import Timetable from "@/ui/timetable" import { Schedule } from "./types" import { readFile } from "fs/promises" import { ScheduleProvider } from "./context" import { Events } from "@/ui/events"; import { Locations } from "@/ui/locations"; import { EventsEdit } from "@/ui/events-edit"; import { PushNotification } from "@/ui/push-notification"; export const dynamic = "force-dynamic"; export default async function page() { const schedule: Schedule = JSON.parse(await readFile("schedule.json", "utf-8")); return (

Schedule & Events

Study carefully, we only hold these events once a year.

Get notified about updates

Schedule

Events

Locations

); }