From 884c292bd37365fbd84a693b11d165ac76b30924 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 01:28:39 +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 7411c12..e8d7b85 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 01:28:42 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 104 ++++++++++++-------------------------- 1 file changed, 31 insertions(+), 73 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e8d7b85..353e4ed 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,95 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Inicio", - "href": "#hero" - }, - { - "name": "Platos", - "href": "#dishes" - }, - { - "name": "Sobre Nosotros", - "href": "#about" - }, - { - "name": "Contacto", - "href": "#contact" - }, - { - "name": "Flavors", - "href": "#flavors" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Inicio", href: "#hero" }, + { name: "Platos", href: "#dishes" }, + { name: "Sobre Nosotros", href: "#about" }, + { name: "Contacto", href: "#contact" }, + { name: "Flavors", href: "#flavors" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="DOKATE" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=8sutsa" + ctaButton={{ + text: "WhatsApp", href: "https://wa.me/58..."}} + navItems={navItems} + />
+ ]} + copyright="© 2024 DOKATE. Todos los derechos reservados." + links={[ + { label: "Instagram", href: "#" }, + { label: "Política de Privacidad", href: "#" }, + ]} + />
); -- 2.49.1