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 { Image, Instagram, Twitter } from "lucide-react"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { "name": "Home", "href": "#hero" }, { "name": "Gallery", "href": "#gallery" }, { "name": "Artist", "href": "#about" }, { "name": "Contact", "href": "#contact" }, { "name": "Features", "href": "#features" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Faq", "href": "#faq" } ]; return (
); }