+ {/* Quick Actions */}
+
+
+
+ {quickActions.map((action, index) => (
+
+
+ {action.label}
+
+ ))}
+
+
+
+
+ {/* Content Area */}
+ {activeTab === 'explore' && (
+
+
+
Cerca de ti
+
+
+ Ver en mapa
+
+
+
+ {attractions.map((attraction) => (
+
+
+
+
+ {attraction.image}
+
+
+
+
+
{attraction.name}
+ {attraction.category}
+
+
+
+
+ {attraction.rating}
+
+
{attraction.distance}
+
+
+
+
${attraction.price}
+
+
+
+ Ver AR
+
+
+ Reservar
+
+
+
+
+
+
+
+ ))}
+
+ )}
+
+ {activeTab === 'map' && (
+
+
+
+
+
+ )}
+
+ {activeTab === 'ar' && (
+
+
+
+
+
+ )}
+
+ {activeTab === 'bookings' && (
+
+
+
Mis Reservas
+
No tienes reservas activas
+
Explorar Actividades
+
+ )}
+
+ {activeTab === 'shop' && (
+
+
+
Tienda de Souvenirs
+
Descubre productos locales
+
Ver Productos
+
+ )}
+
+
+ setActiveTab('explore')}
+ className={`flex flex-col items-center gap-1 py-2 rounded-lg transition-colors ${
+ activeTab === 'explore' ? 'text-primary bg-primary/10' : 'text-gray-600'
+ }`}
+ >
+
+ Explorar
+
+
+ setActiveTab('map')}
+ className={`flex flex-col items-center gap-1 py-2 rounded-lg transition-colors ${
+ activeTab === 'map' ? 'text-primary bg-primary/10' : 'text-gray-600'
+ }`}
+ >
+
+ Mapa
+
+
+ setActiveTab('ar')}
+ className={`flex flex-col items-center gap-1 py-2 rounded-lg transition-colors ${
+ activeTab === 'ar' ? 'text-primary bg-primary/10' : 'text-gray-600'
+ }`}
+ >
+
+ AR
+
+
+ setActiveTab('bookings')}
+ className={`flex flex-col items-center gap-1 py-2 rounded-lg transition-colors ${
+ activeTab === 'bookings' ? 'text-primary bg-primary/10' : 'text-gray-600'
+ }`}
+ >
+
+ Reservas
+
+
+ setActiveTab('shop')}
+ className={`flex flex-col items-center gap-1 py-2 rounded-lg transition-colors ${
+ activeTab === 'shop' ? 'text-primary bg-primary/10' : 'text-gray-600'
+ }`}
+ >
+
+ Tienda
+
+
+