import FooterBrand from '@/components/sections/footer/FooterBrand'; import NavbarDropdown from '@/components/ui/NavbarDropdown'; 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": "Programs", "href": "#programs" }, { "name": "About", "href": "#about" }, { "name": "AI Learning", "href": "#ai-learning" }, { "name": "Admissions", "href": "#contact" }, { "name": "Hero", "href": "#hero" }, { "name": "Metrics", "href": "#metrics" }, { "name": "Features", "href": "#features" } ]; return (
); }