Merge version_1_1781964857667 into main
Merge version_1_1781964857667 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user