import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; import NavbarFloating from '@/components/ui/NavbarFloating'; 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": "Sobre Nosotros", "href": "#about" }, { "name": "Menú", "href": "#menu" }, { "name": "Reseñas", "href": "#testimonials" }, { "name": "Contacto", "href": "#contact" }, { "name": "Pricing", "href": "#pricing" } ]; return (
); }