feat: add lists page

This commit is contained in:
Levente Orban
2025-08-27 08:46:54 +02:00
parent c2874464d0
commit 9e4260c6bd
9 changed files with 361 additions and 9 deletions

View File

@@ -8,6 +8,7 @@ export interface Event {
location: string;
type: EventType;
attendee_limit?: number;
user_id: string;
created_at: string;
updated_at: string;
}
@@ -37,6 +38,7 @@ export interface DatabaseEvent {
location: string;
type: EventType;
attendee_limit?: number;
user_id: string;
created_at: string;
updated_at: string;
}