export const times = [ { index: 1, start: '08:00', end: '08:45' }, { index: 2, start: '08:45', end: '09:30' }, { index: 3, start: '09:30', end: '10:15' }, { index: 4, start: '10:15', end: '11:00' }, { index: 5, start: '11:00', end: '11:45' }, { index: 6, start: '11:45', end: '12:30' }, { index: 7, start: '12:30', end: '01:15' }, { index: 8, start: '01:15', end: '02:00' }, { index: 9, start: '02:00', end: '02:45' }, { index: 10, start: '02:45', end: '03:30' }, { index: 11, start: '03:30', end: '04:15' }, { index: 12, start: '04:15', end: '05:00' }, ]; export const scheduleData = [ { number: 1, name: 'Montag', lessons: [ { hour: 1, subject: 'Morning Meeting', teacher: "fs", room: "23" }, { hour: 2, subject: 'Team Lunch', teacher: "hsdi", room: "23" }, { hour: 4, subject: 'Project Update', teacher: "sdf", room: "678" }, ], }, { number: 2, name: 'Dienstag', lessons: [ { hour: 1, subject: 'Client Call', teacher: "sdfdf", room: "213" }, { hour: 4, subject: 'Design Review', teacher: "dsf", room: "12" }, ], }, { number: 3, name: 'Mittwoch', lessons: [ { hour: 4, subject: 'Standup Meeting wich is very very very important and I may not miss it', teacher: "hi", room: "1324" }, { hour: 5, subject: 'Code Review', teacher: "sdf", room: "1324" }, ], }, { number: 4, name: 'Donnerstag', lessons: [ { hour: 3, subject: 'Lunch with Sarah', teacher: "hasi", room: "32" }, { hour: 7, subject: 'Sprint Planning', teacher: "df", room: "212" }, ], }, { number: 5, name: 'Freitag', lessons: [ { hour: 3, subject: 'Weekly Sync', teacher: "hi", room: "324" }, { hour: 8, subject: 'Client Demo', teacher: "sd", room: "234" }, ], }, ]; export const Appointments = [ { from: "2024-04-15", until: "2024-04-30", description: "Buy Food" }, { from: "2024-05-01", until: "2024-05-02", description: "Visit Doctor" }, { from: "2024-05-05", until: "2024-05-06", description: "Business Trip" }, { from: "2024-05-10", until: "2024-05-11", description: "Family Gathering" }, { from: "2024-05-15", until: "2024-05-16", description: "Car Service" }, { from: "2024-05-20", until: "2024-05-21", description: "Client Meeting" }, { from: "2024-05-25", until: "2024-05-26", description: "Workshop" }, { from: "2024-06-01", until: "2024-06-02", description: "Team Building" }, { from: "2024-06-05", until: "2024-06-06", description: "Software Training" }, { from: "2024-06-10", until: "2024-06-11", description: "Medical Checkup" }, ]; export const Tests = [ { date: "2024-04-15", subject: "E", type: "KA", teacher: "t1", room: "113", class: "11a" }, { date: "2024-04-20", subject: "M", type: "KA", teacher: "t2", room: "201", class: "11b" }, { date: "2024-04-25", subject: "PH", type: "SA", teacher: "t3", room: "301", class: "11c" }, { date: "2024-04-30", subject: "C", type: "KA", teacher: "t4", room: "113", class: "11d" }, { date: "2024-05-05", subject: "G", type: "SA", teacher: "t5", room: "114", class: "11e" }, { date: "2024-05-10", subject: "BIO", type: "KA", teacher: "t6", room: "215", class: "11f" }, { date: "2024-05-15", subject: "DE", type: "SA", teacher: "t1", room: "113", class: "11a" }, { date: "2024-05-20", subject: "S", type: "KA", teacher: "t2", room: "202", class: "11b" }, { date: "2024-05-25", subject: "GE", type: "KA", teacher: "t3", room: "303", class: "11c" }, { date: "2024-05-30", subject: "INF", type: "SA", teacher: "t4", room: "114", class: "11d" }, ]; export const DayTypes = [ { from: "2024-04-01", until: "2024-04-30", type: "holiday" }, { from: "2024-05-01", until: "2024-05-03", type: "weekend" }, { from: "2024-05-05", until: "2024-05-07", type: "holiday" }, { from: "2024-05-10", until: "2024-05-13", type: "long weekend" }, { from: "2024-05-15", until: "2024-05-17", type: "holiday" }, { from: "2024-05-20", until: "2024-05-26", type: "weekend" }, { from: "2024-05-30", until: "2024-06-02", type: "holiday" }, { from: "2024-06-05", until: "2024-06-07", type: "long weekend" }, { from: "2024-06-10", until: "2024-06-13", type: "holiday" }, { from: "2024-06-20", until: "2024-06-22", type: "weekend" }, ];