From df961c48987ad9693404b5d500d3799aee726244 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 10:09:02 +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 852814f..0d054fd 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 10:09:07 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 68 ++++++++++++--------------------------- 1 file changed, 20 insertions(+), 48 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 0d054fd..b371ca8 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": "Servicios", - "href": "#features" + "name": "Servicios", "href": "#features" }, { - "name": "Equipo", - "href": "#team" + "name": "Equipo", "href": "#team" }, { - "name": "Precios", - "href": "#pricing" + "name": "Precios", "href": "#pricing" }, { - "name": "Contacto", - "href": "#contact" + "name": "Contacto", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,55 +49,36 @@ export default function Layout() { brand="Vitaldent" columns={[ { - title: "Clínica", - items: [ + title: "Clínica", items: [ { - label: "Sobre nosotros", - href: "#", - }, + label: "Sobre nosotros", href: "#"}, { - label: "Equipo", - href: "#team", - }, + label: "Equipo", href: "#team"}, ], }, { - title: "Tratamientos", - items: [ + title: "Tratamientos", items: [ { - label: "Implantes", - href: "#", - }, + label: "Implantes", href: "#"}, { - label: "Estética", - href: "#", - }, + label: "Estética", href: "#"}, ], }, { - title: "Contacto", - items: [ + title: "Contacto", items: [ { - label: "Ubicación", - href: "#", - }, + label: "Ubicación", href: "#"}, { - label: "Reservas", - href: "#contact", - }, + label: "Reservas", href: "#contact"}, ], }, ]} copyright="© 2024 Vitaldent. Todos los derechos reservados." links={[ { - label: "Política de Privacidad", - href: "#", - }, + label: "Política de Privacidad", href: "#"}, { - label: "Aviso Legal", - href: "#", - }, + label: "Aviso Legal", href: "#"}, ]} imageSrc="http://img.b2bpic.net/free-vector/dental-icons-collection_1284-22508.jpg" /> -- 2.49.1