import FooterMinimal from '@/components/sections/footer/FooterMinimal'; 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: "Projects", href: "/projects" }, { name: "Features", href: "/#features" }, { name: "Metrics", href: "/#metrics" }, { name: "Testimonials", href: "/#testimonials" }, { name: "Contact", href: "/#contact" }, { name: "Barrio De Salamanca Penthouse", href: "/barrio-de-salamanca-penthouse" }, ]; return (
); }