Update src/app/page.tsx

This commit is contained in:
2026-03-12 02:35:41 +00:00
parent d80e9dafb5
commit d4eecf5674

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -26,14 +76,36 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<div className="flex items-center justify-end gap-4 pt-4 pr-6">
<button
onClick={() => setLanguage('en')}
className={`px-3 py-2 rounded text-sm font-medium transition-all ${
language === 'en'
? 'bg-primary-cta text-background'
: 'text-foreground hover:bg-card'
}`}
>
EN
</button>
<button
onClick={() => setLanguage('es')}
className={`px-3 py-2 rounded text-sm font-medium transition-all ${
language === 'es'
? 'bg-primary-cta text-background'
: 'text-foreground hover:bg-card'
}`}
>
ES
</button>
</div>
<NavbarStyleApple
brandName="Charly's Tortas"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "Experience", id: "experience" },
{ name: "Location", id: "location" },
{ name: "Reviews", id: "reviews" },
{ name: "Order", id: "order" }
{ name: t.navMenu, id: "menu" },
{ name: t.navExperience, id: "experience" },
{ name: t.navLocation, id: "location" },
{ name: t.navReviews, id: "reviews" },
{ name: t.navOrder, id: "order" }
]}
/>
</div>
@@ -193,31 +265,19 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="Charly's Super Tortas Chilangas"
copyrightText="© 2025 | Charly's Super Tortas Chilangas | Stockton, California"
copyrightText={t.footerCopyright}
columns={[
{
title: "Menu", items: [
{ label: "Super Tortas", href: "#menu" },
{ label: "Street Tacos", href: "#menu" },
{ label: "Micheladas", href: "#menu" },
{ label: "Rice & Beans", href: "#menu" }
]
title: t.footerMenu,
items: t.footerMenuItems
},
{
title: "Visit Us", items: [
{ label: "Location", href: "#location" },
{ label: "Hours", href: "#" },
{ label: "Order Online", href: "#" },
{ label: "Catering", href: "#" }
]
title: t.footerVisit,
items: t.footerVisitItems
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Contact Us", href: "#location" },
{ label: "Reviews", href: "#reviews" }
]
title: t.footerConnect,
items: t.footerConnectItems
}
]}
/>