New booking dashboard

This commit is contained in:
Jose Selesan
2026-04-09 14:54:13 -03:00
parent 11dd12682c
commit aa2fe41ecc
16 changed files with 1292 additions and 42 deletions

View File

@@ -31,7 +31,8 @@ export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek]
export const CourtBookingStatus = {
CONFIRMED: 'CONFIRMED',
CANCELLED: 'CANCELLED'
CANCELLED: 'CANCELLED',
COMPLETED: 'COMPLETED'
} as const
export type CourtBookingStatus = (typeof CourtBookingStatus)[keyof typeof CourtBookingStatus]