Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b4989a4c7 | |||
| 9745d52cca | |||
| 48ed2db2e3 | |||
| d3822a43a8 |
103
src/app/page.tsx
103
src/app/page.tsx
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
|
import { Phone } from "lucide-react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
@@ -29,14 +30,10 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Inicio", id: "hero"},
|
||||||
name: "Inicio", id: "hero"},
|
{ name: "Precios", id: "platillos"},
|
||||||
{
|
{ name: "Reservar", id: "reservar"},
|
||||||
name: "Platillos", id: "platillos"},
|
{ name: "Ubicación", id: "contacto"},
|
||||||
{
|
|
||||||
name: "Reservar", id: "reservar"},
|
|
||||||
{
|
|
||||||
name: "Ubicación", id: "contacto"},
|
|
||||||
]}
|
]}
|
||||||
brandName="La Casa de Juano"
|
brandName="La Casa de Juano"
|
||||||
/>
|
/>
|
||||||
@@ -44,27 +41,20 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardCarousel
|
<HeroBillboardCarousel
|
||||||
background={{
|
background={{ variant: "gradient-bars"}}
|
||||||
variant: "gradient-bars"}}
|
|
||||||
title="La Casa de Juano"
|
title="La Casa de Juano"
|
||||||
description="Desayunos y comida mexicana gourmet en el corazón de Culiacán."
|
description="Desayunos y comida mexicana gourmet en el corazón de Culiacán."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Llamar Ahora", href: "tel:6676883530" },
|
||||||
text: "Reservar Mesa", href: "#reservar"},
|
{ text: "Reservar Mesa", href: "#reservar" },
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg", imageAlt: "La Casa de Juano" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg", imageAlt: "La Casa de Juano"},
|
{ imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-table-setting-with-wine-glasses-plates_181624-60149.jpg", imageAlt: "Ambiente" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/luxury-meeting-dining-room-table-multiple-chairs_114579-2067.jpg", imageAlt: "Platillo Gourmet" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-table-setting-with-wine-glasses-plates_181624-60149.jpg", imageAlt: "Ambiente"},
|
{ imageSrc: "http://img.b2bpic.net/vertical-shot-plate-traditional-ethiopian-food-fruits-vegetables-wooden-table_181624-43812.jpg", imageAlt: "Servicio" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/breakfast-table-with-egg-dish-scrambled-eggs-breads-sausages-cheese-jams_140725-6517.jpg", imageAlt: "Detalle" },
|
||||||
imageSrc: "http://img.b2bpic.net/luxury-meeting-dining-room-table-multiple-chairs_114579-2067.jpg", imageAlt: "Platillo Gourmet"},
|
{ imageSrc: "http://img.b2bpic.net/types-foods-cookies-drinks-put-table-front-flower-vase_181624-15755.jpg", imageAlt: "Gourmet" },
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/vertical-shot-plate-traditional-ethiopian-food-fruits-vegetables-wooden-table_181624-43812.jpg", imageAlt: "Servicio"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/breakfast-table-with-egg-dish-scrambled-eggs-breads-sausages-cheese-jams_140725-6517.jpg", imageAlt: "Detalle"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/types-foods-cookies-drinks-put-table-front-flower-vase_181624-15755.jpg", imageAlt: "Gourmet"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -74,8 +64,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Tradición y Gourmet"
|
title="Tradición y Gourmet"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Ver Precios", href: "#platillos" },
|
||||||
text: "Nuestro Menú", href: "#platillos"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -86,22 +75,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[]}
|
||||||
{
|
title="Precios"
|
||||||
id: "1", name: "Chilaquiles Verdes", price: "$250 MXN", imageSrc: "http://img.b2bpic.net/side-view-stuffed-with-zucchini-with-slice-cheese-cucumber-blue-plate_141793-6117.jpg"},
|
description="Disfruta de nuestra propuesta gastronómica con un rango de precios accesible desde $60 hasta $280 MXN por platillo."
|
||||||
{
|
|
||||||
id: "2", name: "Huevos Benedictinos", price: "$280 MXN", imageSrc: "http://img.b2bpic.net/egg-benedict_74190-5855.jpg"},
|
|
||||||
{
|
|
||||||
id: "3", name: "Guacamole Gourmet", price: "$220 MXN", imageSrc: "http://img.b2bpic.net/close-up-lemon-slices-with-defocused-elements_23-2148224161.jpg"},
|
|
||||||
{
|
|
||||||
id: "4", name: "Chilaquiles Rojos", price: "$250 MXN", imageSrc: "http://img.b2bpic.net/mexican-meal_23-2148159756.jpg"},
|
|
||||||
{
|
|
||||||
id: "5", name: "Pay de Guayaba", price: "$120 MXN", imageSrc: "http://img.b2bpic.net/eggs-breadcrumbs-breakfast-wooden-table_23-2148230476.jpg"},
|
|
||||||
{
|
|
||||||
id: "6", name: "Café de Olla", price: "$60 MXN", imageSrc: "http://img.b2bpic.net/mashed-avocado-guacamole-sauce-bowl-with-crackers_1220-7065.jpg"},
|
|
||||||
]}
|
|
||||||
title="Platillos Destacados"
|
|
||||||
description="El sabor de México elevado a un nivel gourmet."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -109,16 +85,11 @@ export default function LandingPage() {
|
|||||||
<TestimonialCardTwelve
|
<TestimonialCardTwelve
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Ana R.", imageSrc: "http://img.b2bpic.net/medium-woman-taking-food-photo_23-2149250048.jpg" },
|
||||||
id: "1", name: "Ana R.", imageSrc: "http://img.b2bpic.net/medium-woman-taking-food-photo_23-2149250048.jpg"},
|
{ id: "2", name: "Carlos M.", imageSrc: "http://img.b2bpic.net/close-up-people-eating-break-time_23-2149256937.jpg" },
|
||||||
{
|
{ id: "3", name: "Sofía G.", imageSrc: "http://img.b2bpic.net/high-angle-friends-restaurant_23-2148395392.jpg" },
|
||||||
id: "2", name: "Carlos M.", imageSrc: "http://img.b2bpic.net/close-up-people-eating-break-time_23-2149256937.jpg"},
|
{ id: "4", name: "Luis D.", imageSrc: "http://img.b2bpic.net/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg" },
|
||||||
{
|
{ id: "5", name: "María P.", imageSrc: "http://img.b2bpic.net/shisha-place-with-full-furniture_140725-9261.jpg" },
|
||||||
id: "3", name: "Sofía G.", imageSrc: "http://img.b2bpic.net/high-angle-friends-restaurant_23-2148395392.jpg"},
|
|
||||||
{
|
|
||||||
id: "4", name: "Luis D.", imageSrc: "http://img.b2bpic.net/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg"},
|
|
||||||
{
|
|
||||||
id: "5", name: "María P.", imageSrc: "http://img.b2bpic.net/shisha-place-with-full-furniture_140725-9261.jpg"},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Lo que dicen nuestros clientes"
|
cardTitle="Lo que dicen nuestros clientes"
|
||||||
cardTag="Testimonios"
|
cardTag="Testimonios"
|
||||||
@@ -131,12 +102,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "f1", title: "¿Dónde se ubican?", content: "Blvd. Ciudades Hermanas 363 Pte, Culiacán." },
|
||||||
id: "f1", title: "¿Dónde se ubican?", content: "Blvd. Ciudades Hermanas 363 Pte, Culiacán."},
|
{ id: "f2", title: "¿Qué horario tienen?", content: "Abrimos desde las 7:00 AM." },
|
||||||
{
|
{ id: "f3", title: "¿Cuentan con estacionamiento?", content: "Sí, contamos con espacio disponible." },
|
||||||
id: "f2", title: "¿Qué horario tienen?", content: "Abrimos desde las 7:00 AM."},
|
|
||||||
{
|
|
||||||
id: "f3", title: "¿Cuentan con estacionamiento?", content: "Sí, contamos con espacio disponible."},
|
|
||||||
]}
|
]}
|
||||||
title="Preguntas frecuentes"
|
title="Preguntas frecuentes"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
@@ -147,8 +115,7 @@ export default function LandingPage() {
|
|||||||
<div id="reservar" data-section="reservar">
|
<div id="reservar" data-section="reservar">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain"}}
|
|
||||||
tag="Reservaciones"
|
tag="Reservaciones"
|
||||||
title="Reserva tu mesa"
|
title="Reserva tu mesa"
|
||||||
description="Llámanos al 667 688 3530 o solicita información."
|
description="Llámanos al 667 688 3530 o solicita información."
|
||||||
@@ -161,20 +128,8 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Contacto", items: [{ label: "667 688 3530", href: "tel:6676883530" }] },
|
||||||
title: "Contacto", items: [
|
{ title: "Redes", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||||
{
|
|
||||||
label: "667 688 3530", href: "tel:6676883530"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Redes", items: [
|
|
||||||
{
|
|
||||||
label: "Instagram", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Facebook", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="La Casa de Juano"
|
logoText="La Casa de Juano"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user