import FooterBrand from '@/components/sections/footer/FooterBrand'; import NavbarCentered from '@/components/ui/NavbarCentered'; 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": "Accueil", "href": "#hero" }, { "name": "À Propos", "href": "#about" }, { "name": "Services", "href": "#services" }, { "name": "Tarifs", "href": "#pricing" }, { "name": "Contact", "href": "#contact" }, { "name": "Gallery", "href": "#gallery" }, { "name": "Testimonial", "href": "#testimonial" } ]; return (
); }