import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; 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": "About", "href": "#about" }, { "name": "Features", "href": "#features" }, { "name": "Listings", "href": "#listings" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Hero", "href": "#hero" }, { "name": "Social Proof", "href": "#social-proof" }, { "name": "Faq", "href": "#faq" } ]; return (
); }