diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a6a18c5..c2904c7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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 ( + logo="Finca La Caprichosa" + ctaButton={{ + text: "Reservar Ahora", href: "tel:+34608760797"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Finca La Caprichosa. Todos los derechos reservados." + links={[]} + />
);