Merge version_1_1781964857667 into main #1

Merged
bender merged 2 commits from version_1_1781964857667 into main 2026-06-20 14:15:25 +00:00

View File

@@ -7,93 +7,52 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Inicio",
"href": "#hero"
},
{
"name": "Sobre Nosotros",
"href": "#about"
},
{
"name": "Instalaciones",
"href": "#features"
},
{
"name": "Contacto",
"href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ name: "Inicio", href: "#hero" },
{ name: "Sobre Nosotros", href: "#about" },
{ name: "Instalaciones", href: "#features" },
{ name: "Contacto", href: "#contact" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Faq", href: "#faq" }
];
return (
<StyleProvider buttonVariant="bounce" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarCentered
logo="Finca La Caprichosa"
ctaButton={{
text: "Reservar Ahora",
href: "tel:+34608760797",
}}
navItems={navItems} />
logo="Finca La Caprichosa"
ctaButton={{
text: "Reservar Ahora", href: "tel:+34608760797"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Finca La Caprichosa"
columns={[
{
title: "Ubicación",
items: [
brand="Finca La Caprichosa"
columns={[
{
label: "Villa del Prado, Madrid",
href: "#",
},
],
},
{
title: "Contacto",
items: [
{
label: "608 760 797",
href: "tel:+34608760797",
title: "Ubicación", items: [{ label: "Villa del Prado, Madrid", href: "#" }],
},
{
label: "info@fincalacaprichosa.es",
href: "mailto:info@fincalacaprichosa.es",
},
],
},
{
title: "Legal",
items: [
{
label: "Política de Privacidad",
href: "#",
title: "Contacto", items: [
{ label: "608 760 797", href: "tel:+34608760797" },
{ label: "info@fincalacaprichosa.es", href: "mailto:info@fincalacaprichosa.es" },
],
},
{
label: "Aviso Legal",
href: "#",
title: "Legal", items: [
{ label: "Política de Privacidad", href: "#" },
{ label: "Aviso Legal", href: "#" },
],
},
],
},
]}
copyright="© 2024 Finca La Caprichosa. Todos los derechos reservados."
/>
]}
copyright="© 2024 Finca La Caprichosa. Todos los derechos reservados."
links={[]}
/>
</SectionErrorBoundary>
</StyleProvider>
);