import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; 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": "Home", "href": "#hero" }, { "name": "Services", "href": "#services" }, { "name": "About", "href": "#about" }, { "name": "Packages", "href": "#packages" }, { "name": "Gallery", "href": "#gallery" }, { "name": "Reviews", "href": "#reviews" }, { "name": "Contact", "href": "#contact" } ]; return (
); }