From 15f49ec6edc27a4e02ebf9276d1d5c25d3948e93 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 22:40:25 +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 e7b1696..ce83b2c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -39,6 +39,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 22:40:29 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 89 +++++++++++++++------------------------ 1 file changed, 34 insertions(+), 55 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ce83b2c..5b5aa2c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,28 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Inicio", - "href": "#hero" + "name": "Inicio", "href": "#hero" }, { - "name": "Menú", - "href": "#menu" + "name": "Menú", "href": "#menu" }, { - "name": "Promociones", - "href": "#promociones" + "name": "Promociones", "href": "#promociones" }, { - "name": "Contacto", - "href": "#contacto" + "name": "Contacto", "href": "#contacto" }, { - "name": "Testimonios", - "href": "#testimonios" + "name": "Testimonios", "href": "#testimonios" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -38,61 +32,46 @@ export default function Layout() { + logo="Dulce Tentación" + logoImageSrc="http://img.b2bpic.net/free-photo/female-confectioner-boxing-desserts_23-2150360237.jpg" + ctaButton={{ + text: "Pedir Ahora", href: "#contacto"}} + navItems={navItems} + />
+ label: "Menú", href: "#menu"}, + ]} + /> ); -- 2.49.1