import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; 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": "About", "href": "#about" }, { "name": "Services", "href": "#services" }, { "name": "Pricing", "href": "#pricing" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Hero", "href": "#hero" }, { "name": "Highlights", "href": "#highlights" }, { "name": "Metrics", "href": "#metrics" } ]; return (
); }