import Timetable from "@/ui/timetable" import styles from "./page.module.css" import { ScheduleEvent, events, locations } from "./events" function EventInfo(props: { event: ScheduleEvent }) { return

{props.event.name}

{props.event.description ?? "No description provided"}

Timeslots

} export default function schedule() { return

Schedule & Events

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

Schedule

Events

{events.map(event => )}

Locations

    {locations.map(location =>
  • {location.name}

    {location.description ?? "No description provided"}
  • )}
}