From 8992da73d3112f3e85a261722324c1f8ba9db30e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 17:17:00 +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 e7f9880..dd2dbf4 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 17:17:04 +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 dd2dbf4..e8cab28 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": "Productos", - "href": "#productos" + "name": "Productos", "href": "#productos" }, { - "name": "Financiación", - "href": "#financiacion" + "name": "Financiación", "href": "#financiacion" }, { - "name": "Contacto", - "href": "#contacto" + "name": "Contacto", "href": "#contacto" }, { - "name": "Features Media", - "href": "#features-media" + "name": "Features Media", "href": "#features-media" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Testimonios", - "href": "#testimonios" + "name": "Testimonios", "href": "#testimonios" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,50 +49,32 @@ export default function Layout() { brand="CamaStock" columns={[ { - title: "Menú", - items: [ + title: "Menú", items: [ { - label: "Inicio", - href: "#hero", - }, + label: "Inicio", href: "#hero"}, { - label: "Productos", - href: "#productos", - }, + label: "Productos", href: "#productos"}, { - label: "Financiación", - href: "#financiacion", - }, + label: "Financiación", href: "#financiacion"}, { - label: "Contacto", - href: "#contacto", - }, + label: "Contacto", href: "#contacto"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacidad", - href: "#", - }, + label: "Privacidad", href: "#"}, { - label: "Aviso Legal", - href: "#", - }, + label: "Aviso Legal", href: "#"}, ], }, ]} copyright="© 2024 CamaStock, Burgos. Tu descanso nos quita el sueño." links={[ { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, { - label: "Facebook", - href: "#", - }, + label: "Facebook", href: "#"}, ]} /> -- 2.49.1