import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarDropdown from '@/components/ui/NavbarDropdown'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Facebook, Instagram, Twitter } 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": "Collections", "href": "#features" }, { "name": "Services", "href": "#pricing" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Hero", "href": "#hero" }, { "name": "Faq", "href": "#faq" }, { "name": "Contact", "href": "#contact" } ]; return (
); }