import FooterBrand from '@/components/sections/footer/FooterBrand'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import { Outlet } from 'react-router-dom'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; export default function Layout() { const navItems = [ { name: "Work", href: "#hero" }, { name: "About", href: "#about" }, { name: "Services", href: "#features" }, { name: "Pricing", href: "#pricing" }, { name: "Contact", href: "#contact" }, { name: "Product", href: "#product" }, { name: "Metrics", href: "#metrics" } ]; return (
); }