import FooterSimple from '@/components/sections/footer/FooterSimple'; 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": "Recursos", "href": "#features" }, { "name": "Planos", "href": "#pricing" }, { "name": "Sobre", "href": "#about" }, { "name": "Hero", "href": "#hero" }, { "name": "Product Grid", "href": "#product-grid" }, { "name": "Team", "href": "#team" }, { "name": "Testimonials", "href": "#testimonials" } ]; return (
); }