From 7c70f075eebfde655b3f00b02ffe7e0893010009 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 10:03:20 +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 4eb65bc..05b1210 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 10:03:23 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 99 ++++++++++++--------------------------- 1 file changed, 30 insertions(+), 69 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 05b1210..00a3314 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,91 +7,52 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Inicio", - "href": "#hero" - }, - { - "name": "Método", - "href": "#about" - }, - { - "name": "Programas", - "href": "#features" - }, - { - "name": "Reseñas", - "href": "#testimonials" - }, - { - "name": "Contacto", - "href": "#contact" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { "name": "Inicio", "href": "#hero" }, + { "name": "Método", "href": "#about" }, + { "name": "Programas", "href": "#features" }, + { "name": "Reseñas", "href": "#testimonials" }, + { "name": "Contacto", "href": "#contact" }, + { "name": "Pricing", "href": "#pricing" }, + { "name": "Faq", "href": "#faq" } + ]; return ( + logo="Kumon Málaga" + logoImageSrc="http://img.b2bpic.net/free-photo/emblem-icon-banner-badge-graphic_53876-125568.jpg" + ctaButton={{ + text: "Matricular", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Centro Kumon Málaga. Todos los derechos reservados." + links={[ + { label: "kumon.es", href: "https://kumon.es" }, + ]} + />
); -- 2.49.1