Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 60282b244b | |||
| d986434027 |
@@ -3,19 +3,15 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Award, Coffee, ShoppingBag, Truck, Utensils } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,17 +25,16 @@ export default function LandingPage() {
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "#inicio" },
|
||||
{ name: "Inicio", id: "#hero" },
|
||||
{ name: "Experiencia", id: "#experiencia" },
|
||||
{ name: "Carta", id: "#carta" },
|
||||
{ name: "Reseñas", id: "#resenas" },
|
||||
{ name: "Contacto", id: "#contacto" },
|
||||
{ name: "Ubicación", id: "#ubicacion" },
|
||||
]}
|
||||
button={{ text: "Llamar ahora", href: "tel:78675784" }}
|
||||
brandName="Restaurante Doña Goya"
|
||||
@@ -50,7 +45,7 @@ export default function LandingPage() {
|
||||
<HeroSplit
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Sabor casero en el corazón de Flores"
|
||||
description="Disfruta desayunos completos, almuerzos caseros y una atención cálida en Restaurante Doña Goya. ⭐ 4.4 / 5 · 1,045 reseñas. Rango: Q50 - Q100 por persona."
|
||||
description="Disfruta desayunos completos, almuerzos caseros y una atención cálida en Restaurante Doña Goya. Un rincón con tradición en cada plato."
|
||||
buttons={[{ text: "Llamar al restaurante", href: "tel:78675784" }, { text: "Ver ubicación", href: "#ubicacion" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/thanksgiving-dinner-assortment-table_23-2149055456.jpg?_wi=1"
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -63,16 +58,16 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[]}
|
||||
title="Por qué visitarnos"
|
||||
description="Una experiencia auténtica y familiar en la Isla de Flores."
|
||||
title="Nuestra esencia"
|
||||
description="Tradición, sabor local y la mejor atención en Flores."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="experiencia" data-section="experiencia">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={false}
|
||||
title="Una experiencia auténtica en Flores"
|
||||
description={["Restaurante Doña Goya es una opción familiar y auténtica en Flores, ideal para disfrutar un desayuno completo, un almuerzo casero o una comida tranquila."]}
|
||||
title="El sabor de Doña Goya"
|
||||
description={["Con años de tradición, nuestro restaurante ofrece un espacio cálido para compartir momentos inolvidables. Utilizamos ingredientes frescos para honrar las recetas caseras de siempre."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -83,8 +78,8 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={true}
|
||||
products={[]}
|
||||
title="Sabores favoritos"
|
||||
description="Consulta disponibilidad directamente en el restaurante."
|
||||
title="Nuestra cocina"
|
||||
description="Una selección de platos reconfortantes preparados con dedicación."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -101,8 +96,8 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contacto-faq" data-section="contacto-faq">
|
||||
<ContactSplitForm
|
||||
title="¿Tienes dudas específicas?"
|
||||
description="Envíanos un mensaje y responderemos a la brevedad."
|
||||
title="¿Tienes dudas?"
|
||||
description="Estamos listos para atenderte. Déjanos un mensaje."
|
||||
inputs={[{name: 'name', type: 'text', placeholder: 'Nombre'}, {name: 'email', type: 'email', placeholder: 'Correo'}]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -112,7 +107,7 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Calle 15 de Septiembre, Flores, Petén, Guatemala."
|
||||
text="Visítanos en la Calle 15 de Septiembre, Flores, Petén."
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user