import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarCentered from '@/components/ui/NavbarCentered'; 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": "Menu", "href": "#menu" }, { "name": "Contact", "href": "#contact" }, { "name": "Hero", "href": "#hero" }, { "name": "Team", "href": "#team" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Proof", "href": "#proof" }, { name: "Pricing", href: "/pricing" }, ]; return (
); }