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: "Features", href: "#about" }, { name: "Fleet", href: "#fleet" }, { name: "Pricing", href: "#pricing" }, { name: "FAQ", href: "#faq" }, { name: "Hero", href: "#hero" }, { name: "Metrics", href: "#metrics" }, { name: "Testimonials", href: "#testimonials" } ]; return (
); }