From 8a7507cc87f7d946c8ea1db601614f5bba8ec9ef Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 16 Jun 2026 10:03:23 +0000 Subject: [PATCH] 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" }, + ]} + />
);