diff --git a/apps/frontend/src/features/public-booking/public-booking-page.tsx b/apps/frontend/src/features/public-booking/public-booking-page.tsx index 3811e01..1197fc7 100644 --- a/apps/frontend/src/features/public-booking/public-booking-page.tsx +++ b/apps/frontend/src/features/public-booking/public-booking-page.tsx @@ -26,7 +26,6 @@ import { Check, ChevronLeft, ChevronRight, - Clock3, Dumbbell, Lock, MapPin, @@ -413,7 +412,7 @@ function PublicBookingPageChrome({ if (mobile) { return ( - + @@ -440,8 +439,6 @@ function PublicBookingPageChrome({ {children} - - ); @@ -1282,40 +1279,6 @@ function SelectedSlotCard(props: BookingShellProps & { compact?: boolean }) { ); } -function MobileBottomNav() { - const items = [ - { label: 'Reservar', icon: CalendarDays, active: true }, - { label: 'Canchas', icon: Building2 }, - { label: 'Cómo funciona', icon: Clock3 }, - { label: 'Contacto', icon: Users }, - ]; - - return ( - - - {items.map((item) => { - const Icon = item.icon; - - return ( - - - {item.label} - - ); - })} - - - ); -} - export function PublicBookingPage({ complexSlug }: PublicBookingPageProps) { const navigate = useNavigate(); const isMobile = useIsMobile();