import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Facebook, Instagram } from "lucide-react"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { "name": "About", "href": "#about" }, { "name": "Services", "href": "#services" }, { "name": "Gallery", "href": "#gallery" }, { "name": "Team", "href": "#team" }, { "name": "FAQ", "href": "#faq" }, { "name": "Hero", "href": "#hero" }, { "name": "Testimonials", "href": "#testimonials" } ]; return (
); }