Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6910eddaf0 | |||
| 69c295dd13 | |||
| 7de1d7f0ac | |||
| 4d43df4d37 | |||
| 8be460b31e | |||
| 0798a27746 | |||
| 9e376016b3 | |||
| 62faf1e777 | |||
| d962c24f32 |
@@ -6,7 +6,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
@@ -27,7 +27,7 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "Menú", id: "menu" },
|
||||
@@ -42,32 +42,21 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="La experiencia más deliciosa de Xela"
|
||||
description="Waffles, pancakes y sabores únicos en un lugar diseñado para disfrutar con amigos, familia y antojos inolvidables."
|
||||
title="Luxury Brunch & Waffles en Xela"
|
||||
description="Ven a disfrutar de una experiencia moderna en el centro de Quetzaltenango. 0 Avenida 11-77. Sabores gourmet en un espacio elegante y acogedor."
|
||||
testimonials={[
|
||||
{ name: "David Pax", handle: "@davidpax", testimonial: "La comida es muy distinta a lo normal, pero deliciosa.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/hipster-woman-smile-away-enjoy-with-summer-field-evening-with-vintage-tone-filter_1150-1168.jpg" },
|
||||
{ name: "Marco Villegas", handle: "@marcov", testimonial: "Bonito lugar para salir fuera de la rutina.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-cup-table_1170-732.jpg" },
|
||||
{ name: "Ian Agreda", handle: "@ianagreda", testimonial: "Muy buena atención y comida muy rica.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/adult-enjoying-cocktail_52683-107593.jpg" },
|
||||
{ name: "Maria Elena", handle: "@mariaelena", testimonial: "El mejor spot de brunch que he visitado, 10/10.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg" },
|
||||
{ name: "Carlos Gomez", handle: "@carlosg", testimonial: "La calidad de los pancakes es espectacular.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-fast-food-cheat-meal-woman-burger-restaurant_169016-67527.jpg" }
|
||||
{ name: "Gourmet Experience", handle: "@panquewafles", testimonial: "Pancakes de ensueño con jarabe que se derrite en cada bocado.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/gourmet-pancakes-with-syrup-dripping-luxurious-brunch-cafe-setting_140725-9389.jpg" },
|
||||
{ name: "Local Favorite", handle: "@xela_foodie", testimonial: "El ambiente modern black & cream más instagrammable de la ciudad.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/modern-black-cream-interior-design-luxurious-brunch-cafe_140725-9400.jpg" }
|
||||
]}
|
||||
buttons={[{ text: "Ver menú", href: "#menu" }, { text: "Pedir ahora", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/classic-luxury-style-restaurant-with-tables-chairs_140725-9389.jpg"
|
||||
imageAlt="gourmet pancakes honey dripping"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-beautiful-woman-with-long-hair-outside-posing-portrait-close-up_1321-4608.jpg", alt: "Happy woman portrait" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/studio-shot-blithesome-young-woman_197531-19782.jpg", alt: "Studio shot of blithesome young woman" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiley-woman-posing-close-up_23-2149093350.jpg", alt: "Smiley woman posing close up" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-woman-holding-book-close-up_23-2148396302.jpg", alt: "Beautiful woman holding a book" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-happy-woman-with-cup-coffee_23-2147925425.jpg", alt: "Happy woman with cup of coffee" }
|
||||
]}
|
||||
avatarText="Más de 500 clientes felices"
|
||||
buttons={[{ text: "Ver menú", href: "#menu" }, { text: "Reservar mesa", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gourmet-waffles-syrup-dripping-cinematic-golden-lighting_140725-141742.jpg"
|
||||
imageAlt="Gourmet waffles with syrup dripping and golden lighting"
|
||||
avatarText="Bienvenidos a nuestro espacio en 0 Avenida 11-77"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Waffles Gourmet" },
|
||||
{ type: "text", text: "Pancakes Premium" },
|
||||
{ type: "text", text: "Ambiente Relax" },
|
||||
{ type: "text", text: "Café de Especialidad" },
|
||||
{ type: "text", text: "Momentos Inolvidables" }
|
||||
{ type: "text", text: "Ambiente Moderno" },
|
||||
{ type: "text", text: "Café de Especialidad" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -141,11 +130,11 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "David Pax", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/shadow-hides-half-bride-s-face-while-she-smiles-up-sky_8353-8279.jpg" },
|
||||
{ id: "t2", name: "Marco Villegas", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/girl-with-cheesecake_1303-3945.jpg" },
|
||||
{ id: "t1", name: "David Pax", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-wearing-casual-outfit-posing-against-white-background_273609-6466.jpg?_wi=2" },
|
||||
{ id: "t2", name: "Marco Villegas", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-with-beard-wearing-glasses_114579-2244.jpg?_wi=2" },
|
||||
{ id: "t3", name: "Ian Agreda", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/serious-young-male-hat-looking-into-distance-with-upset-unhappy-face-expression-while-sitting-alone-cafe-table-with-cup-tea-waiting-his-girlfriend_273609-1755.jpg" },
|
||||
{ id: "t4", name: "Maria Elena", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25269.jpg" },
|
||||
{ id: "t5", name: "Carlos Gomez", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-beautiful-lady-sitting-restaurant-smiling-camera_114579-92383.jpg" }
|
||||
{ id: "t5", name: "Carlos Gomez", role: "Cliente", company: "Xela", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-wearing-t-shirt-outdoors_23-2148810784.jpg?_wi=2" }
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="Tu satisfacción es nuestra mayor receta de éxito."
|
||||
@@ -156,12 +145,12 @@ export default function LandingPage() {
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Tu próximo antojo ya tiene lugar."
|
||||
description="Contáctanos para reservas, pedidos especiales o más información sobre nuestro brunch."
|
||||
description="Visítanos en 0 Avenida 11-77, Quetzaltenango. ¡Te esperamos para brindarte una experiencia increíble!"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Tu nombre", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Tu correo", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tu mensaje o pedido", rows: 4, required: true }}
|
||||
textarea={{ name: "message", placeholder: "Tu mensaje o reserva", rows: 4, required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/served-table-restaurant_93675-129581.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user