import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarFloating from '@/components/ui/NavbarFloating'; 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": "Stack", "href": "#stack" }, { "name": "Techniques", "href": "#techniques" }, { "name": "Performance", "href": "#performance" }, { "name": "Hero", "href": "#hero" }, { "name": "About", "href": "#about" }, { "name": "Metrics", "href": "#metrics" }, { "name": "Testimonials", "href": "#testimonials" } ]; return (
); }