updated login/signup form to shadcn

This commit is contained in:
2025-07-10 09:39:49 -04:00
parent 5143be1a67
commit 14cbbccd3a
13 changed files with 298 additions and 18 deletions

15
types.d.ts vendored
View File

@@ -15,7 +15,7 @@ interface EventProps {
id: string
name: string
date?: Date | null
location?: string | null
location?: EventLocation | null
creator: { id: string; username: string; }
createdAt: Date; date: Date | null;
creatorId: string;
@@ -44,7 +44,7 @@ interface EventData {
id: string
name: string
date: Date | null
location: string | null
location: EventLocation | null
creatorId: string
createdAt: string
creator: Creator
@@ -71,4 +71,15 @@ type User = {
name?: string
username: string
role: 'COUPLE' | 'PLANNER' | 'GUEST'
}
interface EventLocation {
id: string
name: string
address: string
city: string
state: string
country: string
phone: string | null
email: string | null
}