import React, { useState } from 'react'; import { Globe, MapPin, ChevronRight, Menu, X, Users, Plane, Camera, Languages, Bus, Phone, CheckCircle, Twitter, Instagram, Facebook } from 'lucide-react'; const colors = { primary: '#00ced1', // Cyan/Turquoise secondary: '#ff8c00', // Orange accent: '#d2691e', // Terracotta soft: '#8fbc8f', // Sage Green earth: '#cd853f', // Tan bgLight: '#ffffff' }; const translations = { en: { heroTag: "Let's Go", heroTitle: "Travel", heroBadge: "UP TO 50% OFF", subTitle: "DREAM DESTINATION", book: "BOOK NOW!", call: "For Free Call", services: ["Visa Assistance", "Hotel & Flight", "International Tours", "Travel Packages"], footer: "Global Horizon - Expansion Worldwide" }, es: { heroTag: "Vamos a", heroTitle: "Viajar", heroBadge: "HASTA 50% DTO", subTitle: "DESTINO DE ENSUEÑO", book: "¡RESERVA AHORA!", call: "Llamada Gratuita", services: ["Asistencia de Visa", "Hotel y Vuelos", "Tours Internacionales", "Paquetes de Viaje"], footer: "Global Horizon - Expansión Mundial" }, fr: { heroTag: "Allons", heroTitle: "Voyager", heroBadge: "JUSQU'À 50% DÉDUC", subTitle: "DESTINATION DE RÊVE", book: "RÉSERVEZ MAINTENANT!", call: "Appel Gratuit", services: ["Assistance Visa", "Hôtel et Vols", "Tours Internationaux", "Forfaits Voyage"], footer: "Global Horizon - Expansion Mondiale" }, zh: { heroTag: "让我们去", heroTitle: "旅行", heroBadge: "最高 50% 优惠", subTitle: "梦想目的地", book: "立即预订!", call: "免费通话", services: ["签证协助", "酒店与机票", "国际旅游", "旅游套餐"], footer: "Global Horizon - 全球扩张" } }; export default function App() { const [lang, setLang] = useState('es'); const [isMenuOpen, setIsMenuOpen] = useState(false); const t = translations[lang]; return (
{/* Navbar */} {/* Hero Section with Torn Paper Effect */}
{/* Left Side: Image with Torn Edge */}
Travel Destination {/* Torn Paper Overlay (CSS Shape) */}
{/* Badge */}
UP TO 50% OFF
{/* Right Side: Content */}

{t.heroTag}

{t.heroTitle}

{t.subTitle}

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

{t.call}

800-300-222-004

www.loremtravel.com
{/* Social Icons */}
{[Twitter, Instagram, Facebook].map((Icon, i) => (
))}
{/* Services Grid (Inspired by the first uploaded layout) */}
{t.services.map((service, i) => (
{service}
))}

Nuestra Expansión Mundial
"Experiencias Curadas y Viajes sin Esfuerzo"

25%

OFF PACKAGES

150+

DESTINOS

{/* Destinations Horizontal Style */}
{/* Footer */} {/* Mobile Menu Overlay */} {isMenuOpen && (

GLOBAL HORIZON

)} {/* Floating Call to Action */}
); } function DestinationCard({ img, title, delay }) { return (
{title}

{title.toUpperCase()}

); }