import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; 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": "/" }, { "name": "Experience", "href": "/experience" }, { "name": "Membership", "href": "/membership" }, { "name": "Contact", "href": "/contact" }, { "name": "Hero", "href": "#hero" }, { "name": "Features", "href": "#features" }, { "name": "Testimonials", "href": "#testimonials" } ]; return (
); }