diff --git a/src/app/page.tsx b/src/app/page.tsx index dfdfa91..2a73271 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,9 +9,59 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Beer, Flame, MapPin, Phone, Star, UtensilsCrossed } from 'lucide-react'; +import { Beer, Flame, MapPin, Phone, Star, UtensilsCrossed, Globe } from 'lucide-react'; +import { useState } from 'react'; export default function LandingPage() { + const [language, setLanguage] = useState('en'); + + const translations = { + en: { + navMenu: "Menu", navExperience: "Experience", navLocation: "Location", navReviews: "Reviews", navOrder: "Order", footerMenu: "Menu", footerMenuItems: [ + { label: "Super Tortas", href: "#menu" }, + { label: "Street Tacos", href: "#menu" }, + { label: "Micheladas", href: "#menu" }, + { label: "Rice & Beans", href: "#menu" } + ], + footerVisit: "Visit Us", footerVisitItems: [ + { label: "Location", href: "#location" }, + { label: "Hours", href: "#" }, + { label: "Order Online", href: "#" }, + { label: "Catering", href: "#" } + ], + footerConnect: "Connect", footerConnectItems: [ + { label: "Instagram", href: "https://instagram.com" }, + { label: "Facebook", href: "https://facebook.com" }, + { label: "Contact Us", href: "#location" }, + { label: "Reviews", href: "#reviews" } + ], + footerCopyright: "© 2025 | Charly's Super Tortas Chilangas | Stockton, California" + }, + es: { + navMenu: "Menú", navExperience: "Experiencia", navLocation: "Ubicación", navReviews: "Reseñas", navOrder: "Ordenar", footerMenu: "Menú", footerMenuItems: [ + { label: "Super Tortas", href: "#menu" }, + { label: "Tacos Callejeros", href: "#menu" }, + { label: "Micheladas", href: "#menu" }, + { label: "Arroz y Frijoles", href: "#menu" } + ], + footerVisit: "Visítanos", footerVisitItems: [ + { label: "Ubicación", href: "#location" }, + { label: "Horario", href: "#" }, + { label: "Ordenar en Línea", href: "#" }, + { label: "Catering", href: "#" } + ], + footerConnect: "Conecta", footerConnectItems: [ + { label: "Instagram", href: "https://instagram.com" }, + { label: "Facebook", href: "https://facebook.com" }, + { label: "Contáctanos", href: "#location" }, + { label: "Reseñas", href: "#reviews" } + ], + footerCopyright: "© 2025 | Charly's Super Tortas Chilangas | Stockton, California" + } + }; + + const t = translations[language as keyof typeof translations]; + return ( @@ -193,31 +265,19 @@ export default function LandingPage() {