From 4c7b8251292308f8f3e7d8355060b358225fd448 Mon Sep 17 00:00:00 2001 From: Jose Selesan Date: Mon, 8 Jun 2026 16:34:36 -0300 Subject: [PATCH] refactor(public-booking): remove MobileBottomNav component and adjust layout styles --- .../public-booking/public-booking-page.tsx | 39 +------------------ 1 file changed, 1 insertion(+), 38 deletions(-) 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 ( - - ); -} - export function PublicBookingPage({ complexSlug }: PublicBookingPageProps) { const navigate = useNavigate(); const isMobile = useIsMobile();