Merge version_1_1781456525301 into main

Merge version_1_1781456525301 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-14 17:03:13 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Inicio",
"href": "#hero"
"name": "Inicio", "href": "#hero"
},
{
"name": "Productos",
"href": "#productos"
"name": "Productos", "href": "#productos"
},
{
"name": "Financiación",
"href": "#financiacion"
"name": "Financiación", "href": "#financiacion"
},
{
"name": "Contacto",
"href": "#contacto"
"name": "Contacto", "href": "#contacto"
},
{
"name": "Features Media",
"href": "#features-media"
"name": "Features Media", "href": "#features-media"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Testimonios",
"href": "#testimonios"
"name": "Testimonios", "href": "#testimonios"
}
];
@@ -42,67 +35,48 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="CamaStock"
ctaButton={{
text: "Llamar ahora",
href: "tel:+34947000000",
}}
navItems={navItems} />
logo="CamaStock"
logoImageSrc="http://img.b2bpic.net/free-vector/minimal-logo-designs-set_53876-94205.jpg"
ctaButton={{
text: "Llamar ahora", href: "tel:+34947000000"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="CamaStock"
columns={[
{
title: "Menú",
items: [
brand="CamaStock"
columns={[
{
label: "Inicio",
href: "#hero",
title: "Menú", items: [
{
label: "Inicio", href: "#hero"},
{
label: "Productos", href: "#productos"},
{
label: "Financiación", href: "#financiacion"},
{
label: "Contacto", href: "#contacto"},
],
},
{
label: "Productos",
href: "#productos",
title: "Legal", items: [
{
label: "Privacidad", href: "#"},
{
label: "Aviso Legal", href: "#"},
],
},
]}
copyright="© 2024 CamaStock, Burgos. Tu descanso nos quita el sueño."
links={[
{
label: "Financiación",
href: "#financiacion",
},
label: "Instagram", href: "#"},
{
label: "Contacto",
href: "#contacto",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacidad",
href: "#",
},
{
label: "Aviso Legal",
href: "#",
},
],
},
]}
copyright="© 2024 CamaStock, Burgos. Tu descanso nos quita el sueño."
links={[
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
]}
/>
label: "Facebook", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);