5 Commits

Author SHA1 Message Date
0114c44c1a Update src/app/page.tsx 2026-03-03 23:42:50 +00:00
06ae58c278 Update src/app/styles/variables.css 2026-03-03 23:41:40 +00:00
71c2ea7b12 Update src/app/page.tsx 2026-03-03 23:41:39 +00:00
5b52afd564 Update src/app/layout.tsx 2026-03-03 23:41:39 +00:00
1ccb5af737 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:37:46 +00:00
3 changed files with 85 additions and 82 deletions

View File

@@ -15,18 +15,19 @@ const inter = Inter({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Mi Fiesta | Authentic Mexican Restaurant in Beverly, WV", description: "Authentic Mexican cuisine in Beverly, WV. Enjoy fresh tacos, fajitas, burritos, and more. Located at 710 Main St. Order online or call 304-940-8053.", keywords: "Mexican restaurant Beverly WV, authentic tacos, fajitas near me, best Mexican food, burrito, Beverly West Virginia", robots: { title: "Mi Fiesta | Auténtico Restaurante Mexicano en Beverly, WV", description: "Auténtica cocina mexicana en Beverly, WV. Disfruta de tacos frescos, fajitas, burritos y más. Ubicado en 710 Main St. Ordena en línea o llama al 304-940-8053.", keywords: "restaurante mexicano Beverly WV, tacos auténticos, fajitas cerca de mí, mejor comida mexicana, burrito, Beverly West Virginia", robots: {
index: true, index: true,
follow: true, follow: true,
}, },
openGraph: { openGraph: {
title: "Mi Fiesta | Authentic Mexican Cuisine", description: "Experience authentic Mexican flavors at Mi Fiesta in Beverly, WV", url: "https://mifiesta-beverly.com", siteName: "Mi Fiesta", type: "website", images: [ title: "Mi Fiesta | Auténtica Cocina Mexicana", description: "Experimenta auténticos sabores mexicanos en Mi Fiesta en Beverly, WV", url: "https://mifiesta-beverly.com", siteName: "Mi Fiesta", type: "website", images: [
{ {
url: "http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg", alt: "Mi Fiesta Mexican Restaurant"}, url: "http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg", alt: "Restaurante Mexicano Mi Fiesta"
},
], ],
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Mi Fiesta | Authentic Mexican Restaurant", description: "Fresh, authentic Mexican cuisine in Beverly, WV", images: ["http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg"], card: "summary_large_image", title: "Mi Fiesta | Auténtico Restaurante Mexicano", description: "Auténtica cocina mexicana fresca en Beverly, WV", images: ["http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg"],
}, },
}; };
@@ -36,7 +37,7 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}>) { }>) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="es" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`} className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
@@ -1414,4 +1415,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -9,7 +9,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Clock, MapPin, Utensils } from 'lucide-react'; import { Clock, MapPin, Flame, Palette, Music, Heart } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -27,27 +27,27 @@ export default function LandingPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Mi Fiesta" brandName="🌮 Mi Fiesta"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Inicio", id: "hero" },
{ name: "Menu", id: "menu" }, { name: "Menú", id: "menu" },
{ name: "Specialties", id: "specialties" }, { name: "Especialidades", id: "specialties" },
{ name: "Location", id: "location" }, { name: "Ubicación", id: "location" },
{ name: "Order Online", id: "https://www.doordash.com" } { name: "Ordenar", id: "https://www.doordash.com" }
]} ]}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogo <HeroLogo
logoText="Mi Fiesta" logoText="🎉 Mi Fiesta"
description="Authentic Mexican Cuisine in Beverly, WV" description="Auténtica Cocina Mexicana en Beverly, WV - ¡Donde la Tradición Cobra Vida!"
buttons={[ buttons={[
{ text: "Order Online", href: "https://www.doordash.com" }, { text: "🛵 Ordenar En Línea", href: "https://www.doordash.com" },
{ text: "View Menu", href: "#menu" } { text: "📋 Ver Menú", href: "#menu" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg" imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-tasty-tortillas-with-meat-tomato-sauce-ingredients_181624-46252.jpg"
imageAlt="Authentic Mexican food with vibrant colors" imageAlt="Auténtica comida mexicana con colores vibrantes"
showDimOverlay={true} showDimOverlay={true}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
@@ -55,12 +55,12 @@ export default function LandingPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<TextSplitAbout <TextSplitAbout
title="Welcome to Mi Fiesta" title="¡Bienvenido a Mi Fiesta! 🎊"
description={[ description={[
"Located at 710 Main St, Beverly, WV, Mi Fiesta brings authentic Mexican cuisine to your table. We offer a wide array of fresh food including Super Burrito Azteca, Steak Fiesta, Fajita del Mar, Pollo Loco, Taquitos, Taco Salad, Chile Verde, and Quesadillas Fajitas.", "We use the freshest ingredients in preparing our food to provide the best quality and taste. Every dish is crafted with care and passion, reflecting our commitment to authentic Mexican flavors and exceptional service. Try our delicious food today!" "Ubicados en 710 Main St, Beverly, WV, Mi Fiesta trae auténtica cocina mexicana a tu mesa. Ofrecemos una amplia variedad de comida fresca incluyendo Super Burrito Azteca, Steak Fiesta, Fajita del Mar, Pollo Loco, Taquitos, Taco Salad, Chile Verde, y Quesadillas Fajitas.", "Utilizamos los ingredientes más frescos en la preparación de nuestra comida para proporcionar la mejor calidad y sabor. Cada plato es elaborado con cuidado y pasn, reflejando nuestro compromiso con los auténticos sabores mexicanos y el servicio excepcional. ¡Prueba nuestra deliciosa comida hoy!"
]} ]}
buttons={[ buttons={[
{ text: "Call Now", href: "tel:304-940-8053" } { text: "☎️ Llamar Ahora", href: "tel:304-940-8053" }
]} ]}
showBorder={true} showBorder={true}
useInvertedBackground={false} useInvertedBackground={false}
@@ -69,27 +69,28 @@ export default function LandingPage() {
<div id="menu" data-section="menu"> <div id="menu" data-section="menu">
<FeatureCardEight <FeatureCardEight
title="Explore Our Menu" title="🌶️ Explora Nuestro Menú Tradicional"
description="From appetizers to desserts, discover our full range of authentic Mexican dishes" description="Desde los mejores aperitivos hasta los postres más dulces, descubre nuestro completo menú de auténticos platillos mexicanos"
tag="Menu Categories" tag="🍽️ Categorías del Menú"
tagIcon={Palette}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
id: 1, id: 1,
title: "Appetizers", description: "Taquitos, guacamole dip, chorizo dip, nachos supreme and more crispy starters", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg?_wi=1", imageAlt: "Appetizers platter" title: "🥒 Aperitivos Clásicos", description: "Taquitos crujientes, dip de guacamole, dip de chorizo, nachos supremos y más aperitivos tradicionales que harán tu fiesta completa", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg?_wi=1", imageAlt: "Plato de aperitivos"
}, },
{ {
id: 2, id: 2,
title: "Burritos & Chimichangas", description: "Chori-Pollo, Burrito Mexicano, Burrito Deluxe, and Mi Fiesta Burrito with cheese sauce", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg?_wi=2", imageAlt: "Burrito platter" title: "🌯 Burritos & Chimichangas", description: "Chori-Pollo, Burrito Mexicano, Burrito Deluxe, y el legendario Burrito Mi Fiesta cubierto con salsa de queso derretido", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg?_wi=2", imageAlt: "Plato de burritos"
}, },
{ {
id: 3, id: 3,
title: "Fajitas", description: "Sizzling fajitas with grilled peppers, onions and tomatoes. Texanas, chicken, beef, shrimp and veggie options", imageSrc: "http://img.b2bpic.net/free-photo/platter-fried-thin-lamb-slices-cooked-with-colourful-bell-peppers_140725-2643.jpg?_wi=1", imageAlt: "Sizzling fajitas" title: "🔥 Fajitas Sizzling", description: "Deliciosas fajitas con pimientos asados, cebollas y tomates. Opciones de Texanas, pollo, carne de res, camarón y vegetarianas", imageSrc: "http://img.b2bpic.net/free-photo/platter-fried-thin-lamb-slices-cooked-with-colourful-bell-peppers_140725-2643.jpg?_wi=1", imageAlt: "Fajitas humeantes"
}, },
{ {
id: 4, id: 4,
title: "Tacos & Seafood", description: "Tacos de Carne Asada, Pollo Asada, Al Pastor, Carnitas, Fish Tacos and Camarones options", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-taco-mexican-party_23-2149362784.jpg?_wi=1", imageAlt: "Colorful tacos" title: "🌮 Tacos & Mariscos", description: "Tacos de Carne Asada, Pollo Asado, Al Pastor, Carnitas, Tacos de Pescado y opciones de Camarones frescos del día", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-taco-mexican-party_23-2149362784.jpg?_wi=1", imageAlt: "Tacos coloridos"
} }
]} ]}
/> />
@@ -97,24 +98,25 @@ export default function LandingPage() {
<div id="specialties" data-section="specialties"> <div id="specialties" data-section="specialties">
<ProductCardTwo <ProductCardTwo
title="Our Specialties" title="⭐ Nuestras Especialidades Favoritas"
description="Fan-favorite dishes that showcase authentic Mexican flavors and quality ingredients" description="Platillos favoritos de la casa que muestran auténticos sabores mexicanos con ingredientes de calidad premium"
tag="House Favorites" tag="🏆 Favoritos de la Casa"
tagIcon={Flame}
textboxLayout="default" textboxLayout="default"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "1", brand: "Mi Fiesta Signature", name: "Steak Fiesta", price: "$20.99", rating: 5, id: "1", brand: "Especialidad Mi Fiesta", name: "🥩 Steak Fiesta", price: "$20.99", rating: 5,
reviewCount: "312", imageSrc: "http://img.b2bpic.net/free-photo/platter-fried-thin-lamb-slices-cooked-with-colourful-bell-peppers_140725-2643.jpg?_wi=2", imageAlt: "Steak Fiesta dish" reviewCount: "312", imageSrc: "http://img.b2bpic.net/free-photo/platter-fried-thin-lamb-slices-cooked-with-colourful-bell-peppers_140725-2643.jpg?_wi=2", imageAlt: "Plato Steak Fiesta"
}, },
{ {
id: "2", brand: "Mi Fiesta Signature", name: "Mi Fiesta Burrito", price: "$17.99", rating: 5, id: "2", brand: "Especialidad Mi Fiesta", name: "🌯 Burrito Mi Fiesta", price: "$17.99", rating: 5,
reviewCount: "287", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg?_wi=3", imageAlt: "Mi Fiesta Burrito" reviewCount: "287", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg?_wi=3", imageAlt: "Burrito Mi Fiesta"
}, },
{ {
id: "3", brand: "Mi Fiesta Signature", name: "Fajita del Mar", price: "$20.99", rating: 5, id: "3", brand: "Especialidad Mi Fiesta", name: "🦐 Fajita del Mar", price: "$20.99", rating: 5,
reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-taco-mexican-party_23-2149362784.jpg?_wi=2", imageAlt: "Fajita del Mar" reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-taco-mexican-party_23-2149362784.jpg?_wi=2", imageAlt: "Fajita del Mar"
} }
]} ]}
@@ -123,24 +125,24 @@ export default function LandingPage() {
<div id="location" data-section="location"> <div id="location" data-section="location">
<PricingCardFive <PricingCardFive
title="Hours & Location" title="🕐 Horarios & 📍 Ubicación"
description="Visit us at our Beverly location. We're open 6 days a week for lunch and dinner service." description="Visítanos en nuestra ubicación en Beverly. Estamos abiertos 6 días a la semana para servir tu comida favorita."
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
plans={[ plans={[
{ {
id: "hours", tag: "Business Hours", tagIcon: Clock, id: "hours", tag: "⏰ Horario de Atención", tagIcon: Clock,
price: "Open", period: "", description: "We're closed Mondays and Sundays. Open Tuesday to Saturday for your dining pleasure.", button: { text: "Call Us", href: "tel:304-940-8053" }, price: "Abierto", period: "", description: "Cerrado los lunes y domingos. Abierto de martes a sábado para tu disfrute.", button: { text: "☎️ Llámanos", href: "tel:304-940-8053" },
featuresTitle: "Hours:", features: [ featuresTitle: "Horarios:", features: [
"Tuesday - Saturday: 11:00 AM - 8:00 PM", "Monday - CLOSED", "Sunday - CLOSED", "Fast service & dine-in available" "Martes - Sábado: 11:00 AM - 8:00 PM", "Lunes - CERRADO", "Domingo - CERRADO", "Servicio rápido y cómodo"
] ]
}, },
{ {
id: "location", tag: "Location", tagIcon: MapPin, id: "location", tag: "📍 Ubicación", tagIcon: MapPin,
price: "Visit", period: "Us", description: "Located in the heart of Beverly, WV. Easy parking and accessible entrance.", button: { text: "Get Directions", href: "https://maps.google.com/?q=710+Main+St+Beverly+WV+26253" }, price: "Visítanos", period: "Hoy", description: "En el corazón de Beverly, WV. Estacionamiento fácil y entrada accesible.", button: { text: "📍 Obtener Dirección", href: "https://maps.google.com/?q=710+Main+St+Beverly+WV+26253" },
featuresTitle: "Address & Contact:", features: [ featuresTitle: "Dirección & Contacto:", features: [
"710 Main St, Beverly, WV 26253", "Phone: 304-940-8053", "Street parking available", "Family-friendly environment" "710 Main St, Beverly, WV 26253", "Teléfono: 304-940-8053", "Estacionamiento en la calle disponible", "Ambiente familiar"
] ]
} }
]} ]}
@@ -149,48 +151,48 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
tag="Ready to Order?" tag="🎉 ¿Listo para Ordenar?"
title="Order Your Favorites Today" title="Ordena Tus Favoritos Hoy Mismo"
description="Can't wait to visit? Order online for delivery or pickup through our partners. Or give us a call at 304-940-8053 to place your order." description="¿No puedes esperar para visitarnos? Ordena en línea para entrega o recoger a través de nuestros socios. O llámanos al 304-940-8053 para realizar tu pedido."
tagIcon={Utensils} tagIcon={Music}
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
inputPlaceholder="Enter your email for special offers" inputPlaceholder="Ingresa tu correo para ofertas especiales"
buttonText="Sign Up" buttonText="✉️ Suscribirse"
termsText="Join our mailing list for exclusive deals and new menu items. We respect your privacy." termsText="Únete a nuestra lista de correo para ofertas exclusivas y nuevos platillos del menú. Respetamos tu privacidad."
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg" imageSrc="http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg"
imageAlt="Mi Fiesta Mexican Restaurant interior" imageAlt="Interior del Restaurante Mexicano Mi Fiesta"
logoText="Mi Fiesta" logoText="🌮 Mi Fiesta"
copyrightText="© 2025 Mi Fiesta Mexican Restaurant | 710 Main St, Beverly, WV 26253 | 304-940-8053" copyrightText="© 2025 Mi Fiesta Restaurante Mexicano | 710 Main St, Beverly, WV 26253 | 304-940-8053"
columns={[ columns={[
{ {
title: "Menu", items: [ title: "🍽️ Menú", items: [
{ label: "Appetizers", href: "#menu" }, { label: "Aperitivos", href: "#menu" },
{ label: "Burritos", href: "#menu" }, { label: "Burritos", href: "#menu" },
{ label: "Fajitas", href: "#menu" }, { label: "Fajitas", href: "#menu" },
{ label: "Tacos", href: "#menu" }, { label: "Tacos", href: "#menu" },
{ label: "Desserts", href: "#menu" } { label: "Postres", href: "#menu" }
] ]
}, },
{ {
title: "Visit Us", items: [ title: "📍 Visítanos", items: [
{ label: "Hours", href: "#location" }, { label: "Horarios", href: "#location" },
{ label: "Location", href: "https://maps.google.com/?q=710+Main+St+Beverly+WV+26253" }, { label: "Ubicación", href: "https://maps.google.com/?q=710+Main+St+Beverly+WV+26253" },
{ label: "Call Us", href: "tel:304-940-8053" }, { label: "Llámanos", href: "tel:304-940-8053" },
{ label: "Order Online", href: "https://www.doordash.com" } { label: "Ordenar En Línea", href: "https://www.doordash.com" }
] ]
}, },
{ {
title: "Connect", items: [ title: "🔗 Conecta Con Nosotros", items: [
{ label: "Facebook", href: "https://www.facebook.com" }, { label: "Facebook", href: "https://www.facebook.com" },
{ label: "Instagram", href: "https://www.instagram.com" }, { label: "Instagram", href: "https://www.instagram.com" },
{ label: "Privacy Policy", href: "#" }, { label: "Privacidad", href: "#" },
{ label: "Contact", href: "#contact" } { label: "Contacto", href: "#contact" }
] ]
} }
]} ]}
@@ -198,4 +200,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f7f6f7;; /* --background: #fcf4e6;;
--card: #ffffff;; --card: #fffbf5;;
--foreground: #25190c;; --foreground: #2d1810;;
--primary-cta: #ff6207;; --primary-cta: #c41e3a;;
--secondary-cta: #ffffff;; --secondary-cta: #f4e4c1;;
--accent: #ffce93;; --accent: #e8a537;;
--background-accent: #e8cfa8;; */ --background-accent: #8b4513;; */
--background: #f7f6f7;; --background: #fcf4e6;;
--card: #ffffff;; --card: #fffbf5;;
--foreground: #25190c;; --foreground: #2d1810;;
--primary-cta: #ff6207;; --primary-cta: #c41e3a;;
--primary-cta-text: #f7f6f7;; --primary-cta-text: #f7f6f7;;
--secondary-cta: #ffffff;; --secondary-cta: #f4e4c1;;
--secondary-cta-text: #25190c;; --secondary-cta-text: #25190c;;
--accent: #ffce93;; --accent: #e8a537;;
--background-accent: #e8cfa8;; --background-accent: #8b4513;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);