From 861fad43eb1d47aea9cc82c89b1d9d29cfbe339b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 22:12:58 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 123 +++++++++++--------------------------- 1 file changed, 36 insertions(+), 87 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 31e1543..df09c96 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,111 +7,60 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Inicio", - "href": "#hero" - }, - { - "name": "Servicios", - "href": "#servicios" - }, - { - "name": "Aerotermia", - "href": "#aerotermia" - }, - { - "name": "Proyectos", - "href": "#proyectos" - }, - { - "name": "Contacto", - "href": "#contacto" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Inicio", href: "#hero" }, + { name: "Servicios", href: "#servicios" }, + { name: "Aerotermia", href: "#aerotermia" }, + { name: "Proyectos", href: "#proyectos" }, + { name: "Contacto", href: "#contacto" }, + { name: "About", href: "#about" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="AERO XERAN" + logoImageSrc="http://img.b2bpic.net/free-vector/abstract-colorful-business-card-template_23-2148334243.jpg" + ctaButton={{ + text: "Pide presupuesto", href: "#contacto"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 AERO XERAN, S.L.U. Todos los derechos reservados." + links={[ + { label: "Tel: 643 732 262", href: "tel:643732262" }, + { label: "Email: pablo@aeroxeran.com", href: "mailto:pablo@aeroxeran.com" }, + ]} + />
); -- 2.49.1