From d72dd350458e4709c42b41956edbf45c8f435b89 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 15:32:31 +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 c62e4b9..3dec715 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -88,6 +88,7 @@ export default function Layout() { }, ]} copyright="© 2024 Clínica Veterinaria Gómez Sayago. Todos los derechos reservados." + links={[]} /> -- 2.49.1 From 4b7b5cc74ce4e3e48ea1150c25a4bb53088529de Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 15:32:34 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 57 ++++++++++++++------------------------- 1 file changed, 20 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3dec715..d935fdc 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Inicio", - "href": "#hero" + "name": "Inicio", "href": "#hero" }, { - "name": "Sobre nosotros", - "href": "#about" + "name": "Sobre nosotros", "href": "#about" }, { - "name": "Servicios", - "href": "#services" + "name": "Servicios", "href": "#services" }, { - "name": "Contacto", - "href": "#contact" + "name": "Contacto", "href": "#contact" }, { - "name": "Why Choose Us", - "href": "#why-choose-us" + "name": "Why Choose Us", "href": "#why-choose-us" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -55,40 +46,32 @@ export default function Layout() { -- 2.49.1