From b9ccbd96977a4b8f65ac994646a0ff9b382c5b35 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 15:15: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 949a874..8a18cfb 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 15:15:03 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 54 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8a18cfb..08bab34 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": "Nuestra Carta", - "href": "#menu" + "name": "Nuestra Carta", "href": "#menu" }, { - "name": "Testimonios", - "href": "#testimonials" + "name": "Testimonios", "href": "#testimonials" }, { - "name": "Contacto", - "href": "#contact" + "name": "Contacto", "href": "#contact" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,26 +49,19 @@ export default function Layout() { brand="Entre Chamos y Tíos" columns={[ { - title: "Horarios", - items: [ + title: "Horarios", items: [ { - label: "Jue - Mar: 9:00 - 22:00", - }, + label: "Jue - Mar: 9:00 - 22:00"}, { - label: "Miércoles: Cerrado", - }, + label: "Miércoles: Cerrado"}, ], }, { - title: "Contacto", - items: [ + title: "Contacto", items: [ { - label: "643 61 89 41", - href: "tel:643618941", - }, + label: "643 61 89 41", href: "tel:643618941"}, { - label: "Ocaña, Toledo", - }, + label: "Ocaña, Toledo"}, ], }, ]} @@ -85,13 +69,9 @@ export default function Layout() { imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=1pgztm" links={[ { - label: "Política de Privacidad", - href: "#", - }, + label: "Política de Privacidad", href: "#"}, { - label: "Términos de Uso", - href: "#", - }, + label: "Términos de Uso", href: "#"}, ]} /> -- 2.49.1