From ba2fa10aa331b67f080b784a487f6fd646502dc3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 14:15:19 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a6a18c5..911817c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -93,6 +93,7 @@ export default function Layout() { }, ]} copyright="© 2024 Finca La Caprichosa. Todos los derechos reservados." + links={[]} /> From c37d266ef0cb2b606316f597c035c33a47a4ad26 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 20 Jun 2026 14:15:21 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 98 +++++++++++---------------------------- 1 file changed, 28 insertions(+), 70 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 911817c..c2904c7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,94 +7,52 @@ 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: "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" } + ]; return ( + logo="Finca La Caprichosa" + ctaButton={{ + text: "Reservar Ahora", href: "tel:+34608760797"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Finca La Caprichosa. Todos los derechos reservados." + links={[]} + />
);