From f5c091faf433d629d2397f18dfc1358011626ea5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 29 Apr 2026 19:17:44 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 000c817..dd2fe66 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,7 +36,7 @@ export default function LandingPage() { ]} brandName="El Canario" button={{ - text: "¡Pedir por WhatsApp!", href: "https://wa.me/34910814506" + text: "¡Pedir por WhatsApp!", onClick: () => window.open("https://wa.me/34910814506", "_blank") }} /> @@ -48,9 +48,9 @@ export default function LandingPage() { description="Comida casera, ambiente familiar y sabor que engancha. ¡Haz tu pedido ahora y disfruta!" tag="El mejor sabor casero" buttons={[ - { text: "Pedir WhatsApp", href: "https://wa.me/34910814506" }, + { text: "Pedir WhatsApp", onClick: () => window.open("https://wa.me/34910814506", "_blank") }, { text: "Ver Carta", href: "#menu" }, - { text: "Pedir ahora", href: "https://wa.me/34910814506" } + { text: "Pedir ahora", onClick: () => window.open("https://wa.me/34910814506", "_blank") } ]} mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27031.jpg", imageAlt: "Nuestras pizzas artesanales" }, @@ -69,7 +69,7 @@ export default function LandingPage() { description={[ "En El Canario, nos apasiona la comida casera. Somos un restaurante familiar dedicado a ofrecerte las mejores pizzas, hamburguesas y raciones de Galapagar.", "Nuestro trato amable y nuestra cocina generosa nos han convertido en un referente local." ]} - buttons={[{ text: "Haz tu pedido", href: "https://wa.me/34910814506" }]} + buttons={[{ text: "Haz tu pedido", onClick: () => window.open("https://wa.me/34910814506", "_blank") }]} /> @@ -87,7 +87,7 @@ export default function LandingPage() { ]} title="Nuestra Carta Destacada" description="Elige tu plato favorito y prepárate para disfrutar del auténtico sabor." - buttons={[{ text: "Pedir a Domicilio", href: "https://wa.me/34910814506" }]} + buttons={[{ text: "Pedir a Domicilio", onClick: () => window.open("https://wa.me/34910814506", "_blank") }]} /> @@ -103,7 +103,7 @@ export default function LandingPage() { ]} title="Tu comida, como tú quieras" description="Flexibilidad total para disfrutar de nuestras especialidades." - buttons={[{ text: "Pedir ahora", href: "https://wa.me/34910814506" }]} + buttons={[{ text: "Pedir ahora", onClick: () => window.open("https://wa.me/34910814506", "_blank") }]} /> @@ -118,7 +118,7 @@ export default function LandingPage() { ]} title="Lo que dicen nuestros clientes" description="Descubre las experiencias de nuestros clientes y por qué nos eligen día tras día." - buttons={[{ text: "Haz tu pedido", href: "https://wa.me/34910814506" }]} + buttons={[{ text: "Haz tu pedido", onClick: () => window.open("https://wa.me/34910814506", "_blank") }]} /> @@ -130,8 +130,8 @@ export default function LandingPage() { title="¡Haz tu pedido ahora!" description="Estamos en Calle Escorial, 27, Galapagar. ¡Haz clic para llamarnos o escribirnos por WhatsApp!" buttons={[ - { text: "Llamar ahora", href: "tel:910814506" }, - { text: "¡Pedir por WhatsApp!", href: "https://wa.me/34910814506" }, + { text: "Llamar ahora", onClick: () => window.location.href = "tel:910814506" }, + { text: "¡Pedir por WhatsApp!", onClick: () => window.open("https://wa.me/34910814506", "_blank") }, ]} /> @@ -140,7 +140,7 @@ export default function LandingPage() { window.location.href = "tel:910814506" }, { label: "WhatsApp", onClick: () => window.open("https://wa.me/34910814506", "_blank") }] }, ]} bottomLeftText="© 2024 Mesón Pizzería El Canario" bottomRightText="Galapagar, Madrid" -- 2.49.1