import FooterBrand from '@/components/sections/footer/FooterBrand'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; 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: "الرئيسية", href: "#hero" }, { name: "من نحن", href: "#about" }, { name: "القائمة", href: "#products" }, { name: "الأسعار", href: "#pricing" }, { name: "Features", href: "#features" }, { name: "Testimonials", href: "#testimonials" }, { name: "Faq", href: "#faq" } ]; return (
); }