From b127f30c5bccb5a50b3bbe2be7c2743b73dcb27e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 15:32:42 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 258 ++++++++++------------------------------------- 1 file changed, 52 insertions(+), 206 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2aa4482..4fbe3bf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; export default function LandingPage() { return ( @@ -28,26 +29,11 @@ export default function LandingPage() { @@ -159,48 +74,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { - id: "1", - name: "Menú Degustación", - price: "75€", - variant: "Selección del Chef", - imageSrc: "http://img.b2bpic.net/free-photo/view-soft-cake-decorated-with-orange-chocolate-dark-table_140725-86436.jpg", - }, - { - id: "2", - name: "Maridaje Vinos", - price: "35€", - variant: "Selección Especial", - imageSrc: "http://img.b2bpic.net/free-photo/lamb-wrapped-with-dough-tomato-sauce_114579-2133.jpg", - }, - { - id: "3", - name: "Solomillo de Ternera", - price: "28€", - variant: "Plato Principal", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-creamy-cake-with-chocolate-raisins-light-dark-floor_140725-136347.jpg", - }, - { - id: "4", - name: "Pescado de Lonja", - price: "26€", - variant: "Producto Fresco", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-hands-holding-black-plate-with-green-spinach-humus-with-brown-rice-shrimps_140725-12901.jpg", - }, - { - id: "5", - name: "Postre Artesano", - price: "12€", - variant: "Dulce Final", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-black-jelly-dessert-plate_23-2148238723.jpg", - }, - { - id: "6", - name: "Degustación de Quesos", - price: "18€", - variant: "Selección Asturiana", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-squashes-designed-meal-inside-plate-grey-surface_140725-89993.jpg", - }, + { id: "1", name: "Menú Degustación", price: "75€", variant: "Selección del Chef", imageSrc: "http://img.b2bpic.net/free-photo/view-soft-cake-decorated-with-orange-chocolate-dark-table_140725-86436.jpg" }, + { id: "2", name: "Maridaje Vinos", price: "35€", variant: "Selección Especial", imageSrc: "http://img.b2bpic.net/free-photo/lamb-wrapped-with-dough-tomato-sauce_114579-2133.jpg" }, + { id: "3", name: "Solomillo de Ternera", price: "28€", variant: "Plato Principal", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-creamy-cake-with-chocolate-raisins-light-dark-floor_140725-136347.jpg" } ]} title="Nuestra Carta" description="Descubre nuestros menús degustación y maridaje seleccionados por expertos." @@ -211,50 +87,41 @@ export default function LandingPage() { +