From b45436296a411ef1bb3ce8f7e2e42c78fbf531fc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 19:49:45 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 86 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..353d823 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From 92812119553629556291b71727e045e40327cf7d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 19:49:46 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 72527bd..29a783e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -46,7 +46,7 @@ export default function LandingPage() { imageAlt="Interior moderno del restaurante Bovia del Viso" buttons={[ { text: "📞 Llamar Ahora", href: "tel:+34912345678" }, - { text: "📅 Reservar Mesa", href: "#contact" } + { text: "📅 Reservar Mesa", href: "/contact" } ]} buttonAnimation="slide-up" showDimOverlay={true} @@ -145,9 +145,9 @@ export default function LandingPage() { columns={[ { title: "Menú", items: [ - { label: "Inicio", href: "#hero" }, - { label: "Platos", href: "#features" }, - { label: "Reservar", href: "#contact" }, + { label: "Inicio", href: "/" }, + { label: "Platos", href: "/#features" }, + { label: "Reservar", href: "/contact" }, { label: "Contacto", href: "tel:+34912345678" } ] }, @@ -164,7 +164,7 @@ export default function LandingPage() { { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, { label: "Google Maps", href: "https://maps.google.com" }, - { label: "Reserva Online", href: "#contact" } + { label: "Reserva Online", href: "/contact" } ] } ]} -- 2.49.1