feat(bookings): add calendar UI with booking creation

- Add TimeSlot component with available/booked visual states
- Add BookingCalendar component with date navigation and court columns
- Add BookingDialog for creating bookings and viewing/cancelling existing ones
- Add bookings page with calendar integration
- Fix sidebar navigation paths for route group structure

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ivan
2026-02-01 06:50:22 +00:00
parent ef21748191
commit cdf6e8ebe6
6 changed files with 1029 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
export { TimeSlot } from "./time-slot";
export { BookingCalendar, type SelectedSlot } from "./booking-calendar";
export { BookingDialog } from "./booking-dialog";