import FooterBrand from '@/components/sections/footer/FooterBrand'; 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": "Menu", "href": "#menu" }, { "name": "À propos", "href": "#about" }, { "name": "Avis", "href": "#testimonials" }, { "name": "Contact", "href": "#contact" }, { "name": "Hero", "href": "#hero" }, { "name": "Metrics", "href": "#metrics" }, { "name": "Social", "href": "#social" } ]; return (
); }