annoucement banners, calendar pdf export, vehicle booking quck-add, even quick-add

This commit is contained in:
Matthias Hochmeister
2026-03-12 11:47:08 +01:00
parent 71a04aee89
commit cd68bd3795
15 changed files with 997 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
export type BannerLevel = 'info' | 'important' | 'critical';
export interface Banner {
id: string;
message: string;
level: BannerLevel;
starts_at: string;
ends_at: string | null;
created_at: string;
}