From 11c566d8a8ce9cff543c333a2b8aa068fd40f5a6 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 24 Jun 2026 23:05:59 +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 e05a8af..4af798a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 24 Jun 2026 23:06:02 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 65 ++++++++++++--------------------------- 1 file changed, 19 insertions(+), 46 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4af798a..efda13e 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": "Problema", - "href": "#problema" + "name": "Problema", "href": "#problema" }, { - "name": "Servicios", - "href": "#servicios" + "name": "Servicios", "href": "#servicios" }, { - "name": "Proceso", - "href": "#proceso" + "name": "Proceso", "href": "#proceso" }, { - "name": "Precios", - "href": "#precios" + "name": "Precios", "href": "#precios" }, { - "name": "Contacto", - "href": "#contacto" + "name": "Contacto", "href": "#contacto" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metricas", - "href": "#metricas" + "name": "Metricas", "href": "#metricas" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,50 +49,32 @@ export default function Layout() { brand="AVELKIA" columns={[ { - title: "Servicios", - items: [ + title: "Servicios", items: [ { - label: "Bot WhatsApp", - href: "#", - }, + label: "Bot WhatsApp", href: "#"}, { - label: "Agentes IA", - href: "#", - }, + label: "Agentes IA", href: "#"}, { - label: "SEO Local", - href: "#", - }, + label: "SEO Local", href: "#"}, ], }, { - title: "Empresa", - items: [ + title: "Empresa", items: [ { - label: "Sobre Avelkia", - href: "#", - }, + label: "Sobre Avelkia", href: "#"}, { - label: "Casos de éxito", - href: "#", - }, + label: "Casos de éxito", href: "#"}, { - label: "Blog", - href: "#", - }, + label: "Blog", href: "#"}, ], }, ]} copyright="© 2024 Avelkia. Todos los derechos reservados." links={[ { - label: "Privacidad", - href: "#", - }, + label: "Privacidad", href: "#"}, { - label: "Legal", - href: "#", - }, + label: "Legal", href: "#"}, ]} /> -- 2.49.1