From d041e02da970bd9d571f56b712bc538549ce30f8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 14:45:51 +0000 Subject: [PATCH] Bob AI: Update layout navigation, CTA and footer links for Finca La --- src/components/Layout.tsx | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c2904c7..3556c66 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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() { @@ -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" } + ]} />