styling friday

This commit is contained in:
2025-06-27 12:01:46 -04:00
parent 29c91fee7f
commit 216d10855f
14 changed files with 309 additions and 67 deletions

23
types.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
interface GuestBookEntry {
id: string
fName: string
lName: string
side: string
email?: string | null
phone?: string | null
address?: string | null
notes?: string | null
createdAt: Date
}
interface EventProps {
id: string
name: string
date?: Date | null
location?: string | null
creator: { id: string; username: string; }
createdAt: Date; date: Date | null;
creatorId: string;
key: string;
}