Wonfidence

This commit is contained in:
2025-02-07 02:14:36 -06:00
parent 487519230e
commit 6b01c165a9
18 changed files with 828 additions and 102 deletions

12
src/lib/types.ts Normal file
View File

@ -0,0 +1,12 @@
export interface RegistryItem {
id: string;
name: string;
taken: boolean;
link?: string;
}
export interface RSVPItem {
name: string;
dietaryRestrictions: string;
timestamp: string;
}