From 85e215c31207123402ccacd888ead4589777771d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 20:40:52 +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 43e3b2b..69e64ee 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 20:40:56 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 ++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 46 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 69e64ee..c5fea29 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": "El Museo", - "href": "#about" + "name": "El Museo", "href": "#about" }, { - "name": "Visita", - "href": "#features" + "name": "Visita", "href": "#features" }, { - "name": "Testimonios", - "href": "#testimonials" + "name": "Testimonios", "href": "#testimonials" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,47 +35,38 @@ export default function Layout() { + logo="La Capilla" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=jsqwur" + ctaButton={{ + text: "Entradas", href: "#pricing"}} + navItems={navItems} + />
+ label: "Privacidad", href: "#"}, + { + label: "Términos", href: "#"}, + ]} + /> ); -- 2.49.1