2 Commits

Author SHA1 Message Date
kudinDmitriyUp
d041e02da9 Bob AI: Update layout navigation, CTA and footer links for Finca La 2026-06-21 14:45:51 +00:00
d0e0328858 Merge version_2_1782052233603 into main
Merge version_2_1782052233603 into main
2026-06-21 14:31:50 +00:00

View File

@@ -8,12 +8,12 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{ name: "Inicio", href: "#hero" },
{ name: "Sobre Nosotros", href: "#about" },
{ name: "Instalaciones", href: "#features" },
{ name: "Contacto", href: "#contact" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Faq", href: "#faq" }
{ name: "Alojamientos", href: "#features" },
{ name: "Piscina", href: "#metrics" },
{ name: "Pet Friendly", href: "#faq" },
{ name: "Experiencias", href: "#about" },
{ name: "Eventos", href: "#testimonials" },
{ name: "Contacto", href: "#contact" }
];
return (
@@ -23,7 +23,7 @@ export default function Layout() {
<NavbarCentered
logo="Finca La Caprichosa"
ctaButton={{
text: "Reservar Ahora", href: "tel:+34608760797"}}
text: "Consultar disponibilidad", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
@@ -35,23 +35,42 @@ export default function Layout() {
brand="Finca La Caprichosa"
columns={[
{
title: "Ubicación", items: [{ label: "Villa del Prado, Madrid", href: "#" }],
title: "Alojamientos", items: [
{ label: "Pabellón", href: "#features" },
{ label: "Casa del Guarda", href: "#features" },
{ label: "Suites", href: "#features" }
],
},
{
title: "Descubre", items: [
{ label: "Piscina", href: "#metrics" },
{ label: "Pet Friendly", href: "#faq" },
{ label: "Experiencias", href: "#about" },
{ label: "Caprichos", href: "#about" },
{ label: "Eventos", href: "#testimonials" }
],
},
{
title: "Contacto", items: [
{ label: "608 760 797", href: "tel:+34608760797" },
{ label: "Villa del Prado, Madrid", href: "#" },
{ label: "M-507 pk 31,75", href: "#" },
{ label: "+34 608 760 797", href: "tel:+34608760797" },
{ label: "info@fincalacaprichosa.es", href: "mailto:info@fincalacaprichosa.es" },
{ label: "Atención: 9:00 - 21:00", href: "#" }
],
},
{
title: "Legal", items: [
{ label: "Política de Privacidad", href: "#" },
{ label: "Aviso Legal", href: "#" },
{ label: "Cookies", href: "#" }
],
},
]}
copyright="© 2024 Finca La Caprichosa. Todos los derechos reservados."
links={[]}
links={[
{ label: "Instagram", href: "https://instagram.com/fincalacaprichosa" }
]}
/>
</SectionErrorBoundary>
</StyleProvider>