Merge version_1_1782252720752 into main #1

Merged
bender merged 1 commits from version_1_1782252720752 into main 2026-06-23 22:13:01 +00:00

View File

@@ -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 (
<StyleProvider buttonVariant="stagger" siteBackground="noiseGradient" heroBackground="horizonGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AERO XERAN"
ctaButton={{
text: "Pide presupuesto",
href: "#contacto",
}}
navItems={navItems} />
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}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="AERO XERAN, S.L.U."
columns={[
{
title: "Servicios",
items: [
brand="AERO XERAN, S.L.U."
columns={[
{
label: "Aire Acondicionado",
href: "#servicios",
title: "Servicios", items: [
{ label: "Aire Acondicionado", href: "#servicios" },
{ label: "Aerotermia", href: "#aerotermia" },
{ label: "Fontanería", href: "#servicios" },
],
},
{
label: "Aerotermia",
href: "#aerotermia",
title: "Empresa", items: [
{ label: "Quiénes Somos", href: "#about" },
{ label: "Contacto", href: "#contacto" },
],
},
{
label: "Fontanería",
href: "#servicios",
title: "Legal", items: [
{ label: "Política Privacidad", href: "#" },
{ label: "Aviso Legal", href: "#" },
],
},
],
},
{
title: "Empresa",
items: [
{
label: "Quiénes Somos",
href: "#about",
},
{
label: "Contacto",
href: "#contacto",
},
],
},
{
title: "Legal",
items: [
{
label: "Política Privacidad",
href: "#",
},
{
label: "Aviso Legal",
href: "#",
},
],
},
]}
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",
},
]}
/>
]}
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" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);