7 Commits

Author SHA1 Message Date
e9aaf54681 Update src/app/page.tsx 2026-03-08 18:44:57 +00:00
4604c0cc45 Merge version_2 into main
Merge version_2 into main
2026-03-08 18:42:06 +00:00
1182413a81 Update src/app/page.tsx 2026-03-08 18:42:02 +00:00
bd8d5b7158 Update src/app/layout.tsx 2026-03-08 18:42:02 +00:00
c46db2fe9a Merge version_1 into main
Merge version_1 into main
2026-03-08 18:40:47 +00:00
46f1ccc6e6 Merge version_1 into main
Merge version_1 into main
2026-03-08 18:39:57 +00:00
ff753f42e4 Merge version_1 into main
Merge version_1 into main
2026-03-08 18:38:27 +00:00
2 changed files with 17 additions and 1410 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -12,6 +12,11 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Sparkles, Heart, Zap, Phone, Clock, MapPin, MessageCircle, Check, Mail, Bell, Calendar, Send, Camera, Star, Truck } from 'lucide-react';
export default function LandingPage() {
const handleOrderFormSubmit = (name: string) => {
const message = encodeURIComponent(`Hola, quiero ordenar. Mi nombre es: ${name}`);
window.open(`https://wa.me/56942082013?text=${message}`, '_blank');
};
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -72,7 +77,7 @@ export default function LandingPage() {
{ type: "text", content: "Planeta Brunch es tu lugar favorito para desayunar y almorzar / Planeta Brunch is your favorite place to breakfast and brunch" }
]}
buttons={[
{ text: "Ver Menú Completo / View Full Menu", href: "#menu" }
{ text: "Ver Menú Completo / View Full Menu", href: "https://wa.me/56942082013" }
]}
buttonAnimation="blur-reveal"
useInvertedBackground={false}
@@ -110,7 +115,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Ver Menú Completo / View Full Menu", href: "tel:+56942082013" }
{ text: "Ver Menú Completo / View Full Menu", href: "https://wa.me/56942082013" }
]}
buttonAnimation="blur-reveal"
carouselMode="buttons"
@@ -251,7 +256,7 @@ export default function LandingPage() {
<ContactSplit
tag="Solicitud"
title="Solicita Tu Pedido / Request Your Order"
description="Llena este formulario y nos contactaremos dentro de 30 minutos / Fill this form and we'll contact you within 30 minutes"
description="Envíanos un mensaje a WhatsApp para ordenar tu brunch favorito / Send us a WhatsApp message to order your favorite brunch"
tagIcon={Send}
tagAnimation="opacity"
background={{ variant: "plain" }}
@@ -261,8 +266,9 @@ export default function LandingPage() {
mediaAnimation="slide-up"
mediaPosition="left"
inputPlaceholder="Tu nombre / Your name"
buttonText="Enviar / Submit"
termsText="Llamada confirmada al número registrado / Confirmed call to registered number"
buttonText="Enviar a WhatsApp / Send WhatsApp"
termsText="Conectarás directamente con nosotros / You'll connect directly with us"
onSubmit={handleOrderFormSubmit}
/>
</div>