import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; import NavbarCentered from '@/components/ui/NavbarCentered'; 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": "Trade", "href": "#hero" }, { "name": "Pools", "href": "#features" }, { "name": "Portfolio", "href": "#metrics" }, { "name": "About", "href": "#about" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Social Proof", "href": "#social-proof" }, { "name": "Faq", "href": "#faq" }, { name: "Portfolio", href: "/portfolio" }, { name: "About", href: "/about" }, { name: "Products", href: "/products" }, { name: "Contact", href: "/contact" }, ]; return (
); }