Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6cd075e6f1 | |||
| 44021968ac | |||
| 84acce4379 |
122
src/app/page.tsx
122
src/app/page.tsx
@@ -30,22 +30,14 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Inicio", id: "hero"},
|
||||
{
|
||||
name: "Menú",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menú", id: "menu"},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contacto",
|
||||
},
|
||||
name: "Contacto", id: "contacto"},
|
||||
]}
|
||||
button={{
|
||||
text: "Llamar ahora",
|
||||
href: "tel:9995101895",
|
||||
}}
|
||||
text: "Llamar ahora", href: "tel:+529995101895"}}
|
||||
brandName="Cocina Doña Guinelia"
|
||||
/>
|
||||
</div>
|
||||
@@ -53,19 +45,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Sabor auténtico yucateco en cada platillo"
|
||||
description="Comida casera, fresca y tradicional en el corazón de Hunucmá. Calidad y sabor que te harán sentir en casa."
|
||||
buttons={[
|
||||
{
|
||||
text: "Llamar ahora",
|
||||
href: "tel:9995101895",
|
||||
},
|
||||
text: "Llamar ahora", onClick: () => window.location.href = "tel:+529995101895"},
|
||||
{
|
||||
text: "Cómo llegar",
|
||||
href: "https://maps.app.goo.gl/example",
|
||||
},
|
||||
text: "Cómo llegar", href: "https://maps.app.goo.gl/example"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=1"
|
||||
imageAlt="Platillo yucateco tradicional"
|
||||
@@ -77,14 +64,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"4.7 estrellas en Google",
|
||||
"Más de 700 reseñas",
|
||||
"Sabor tradicional",
|
||||
"Atención amable",
|
||||
"Calidad casera",
|
||||
"Perfecto para viajeros",
|
||||
"Ubicación céntrica",
|
||||
]}
|
||||
"4.7 estrellas en Google", "Más de 700 reseñas", "Sabor tradicional", "Atención amable", "Calidad casera", "Perfecto para viajeros", "Ubicación céntrica"]}
|
||||
title="Nuestros clientes nos recomiendan"
|
||||
description="Más de 700 reseñas avalan nuestra tradición y calidad en Hunucmá."
|
||||
/>
|
||||
@@ -98,59 +78,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Tradicional",
|
||||
name: "Huevos Motuleños",
|
||||
price: "$120",
|
||||
rating: 5,
|
||||
reviewCount: "120+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=2",
|
||||
},
|
||||
id: "1", brand: "Tradicional", name: "Huevos Motuleños", price: "$120", rating: 5,
|
||||
reviewCount: "120+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=2"},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Tradicional",
|
||||
name: "Poc Chuc",
|
||||
price: "$180",
|
||||
rating: 5,
|
||||
reviewCount: "200+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=3",
|
||||
},
|
||||
id: "2", brand: "Tradicional", name: "Poc Chuc", price: "$180", rating: 5,
|
||||
reviewCount: "200+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=3"},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Tradicional",
|
||||
name: "Huevos Rancheros",
|
||||
price: "$110",
|
||||
rating: 4,
|
||||
reviewCount: "80+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=4",
|
||||
},
|
||||
id: "3", brand: "Tradicional", name: "Huevos Rancheros", price: "$110", rating: 4,
|
||||
reviewCount: "80+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=4"},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Bebidas",
|
||||
name: "Agua de Cebada",
|
||||
price: "$40",
|
||||
rating: 5,
|
||||
reviewCount: "150+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=5",
|
||||
},
|
||||
id: "4", brand: "Bebidas", name: "Agua de Cebada", price: "$40", rating: 5,
|
||||
reviewCount: "150+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=5"},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Especialidad",
|
||||
name: "Sopa de Lima",
|
||||
price: "$130",
|
||||
rating: 5,
|
||||
reviewCount: "90+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=6",
|
||||
},
|
||||
id: "5", brand: "Especialidad", name: "Sopa de Lima", price: "$130", rating: 5,
|
||||
reviewCount: "90+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=6"},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Tradicional",
|
||||
name: "Panuchos",
|
||||
price: "$100",
|
||||
rating: 4,
|
||||
reviewCount: "110+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=7",
|
||||
},
|
||||
id: "6", brand: "Tradicional", name: "Panuchos", price: "$100", rating: 4,
|
||||
reviewCount: "110+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg?_wi=7"},
|
||||
]}
|
||||
title="Nuestros Platillos Destacados"
|
||||
description="Descubre la auténtica esencia de la gastronomía yucateca con ingredientes frescos."
|
||||
@@ -162,20 +106,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Tradición y Sabor Casero",
|
||||
},
|
||||
type: "text", content: "Tradición y Sabor Casero"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg",
|
||||
alt: "Restaurante",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/top-view-brown-plate-round-formed-with-different-sauces-pink-wall_140725-46920.jpg", alt: "Restaurante"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Llámanos",
|
||||
href: "tel:9995101895",
|
||||
},
|
||||
text: "Llámanos", onClick: () => window.location.href = "tel:+529995101895"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -184,16 +121,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Contacto"
|
||||
title="¿Antojo de comida yucateca auténtica?"
|
||||
description="Estamos ubicados en Calle 27 x 30 y 32, Centro, Hunucmá. ¡Visítanos o pide para llevar!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Llámanos ahora",
|
||||
href: "tel:9995101895",
|
||||
},
|
||||
text: "Llámanos ahora", onClick: () => window.location.href = "tel:+529995101895"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -205,13 +139,11 @@ export default function LandingPage() {
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Phone,
|
||||
href: "tel:9995101895",
|
||||
ariaLabel: "Teléfono",
|
||||
},
|
||||
href: "tel:+529995101895", ariaLabel: "Teléfono"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user