Minimally functional schedule rendering

Add timetable and event listing based on transforming a simple input
data structure.
This commit is contained in:
Hornwitser 2025-02-26 22:53:56 +01:00
parent 7d822e4934
commit 484c27ece2
10 changed files with 610 additions and 7 deletions

8
css.d.ts vendored Normal file
View file

@ -0,0 +1,8 @@
import type * as CSS from 'csstype';
// typing for custom variables.
declare module 'csstype' {
interface Properties {
"--minutes"?: number,
}
}