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": "Shop", "href": "#shop" }, { "name": "Fishing Report", "href": "#report" }, { "name": "About", "href": "#about" }, { "name": "Contact", "href": "#contact" }, { "name": "Hero", "href": "#hero" }, { "name": "Arrivals", "href": "#arrivals" }, { "name": "Brands", "href": "#brands" }, { name: "Products", href: "/products" }, { name: "Reels Products", href: "/reels-products" }, ]; return (
); }