import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; import NavbarInline from '@/components/ui/NavbarInline'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { "name": "Inicio", "href": "#hero" }, { "name": "Nosotros", "href": "#about" }, { "name": "Menú", "href": "#menu" }, { "name": "Contacto", "href": "#contact" }, { "name": "Features", "href": "#features" }, { "name": "Metrics", "href": "#metrics" }, { "name": "Testimonials", "href": "#testimonials" } ]; return (
); }