import FooterBasic from '@/components/sections/footer/FooterBasic'; 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": "Início", "href": "#hero" }, { "name": "Sobre", "href": "#about" }, { "name": "Benefícios", "href": "#features" }, { "name": "Contato", "href": "#contact" }, { "name": "Social Proof", "href": "#social-proof" }, { "name": "Metrics", "href": "#metrics" }, { "name": "Testimonial", "href": "#testimonial" } ]; return (
); }