import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; import NavbarFloating from '@/components/ui/NavbarFloating'; 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": "Services", "href": "#services" }, { "name": "Portfolio", "href": "#portfolio" }, { "name": "Training", "href": "#training" }, { "name": "Why NGA", "href": "#why-nga" }, { "name": "Contact", "href": "#contact" } ]; return (
); }