import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; import NavbarInline from '@/components/ui/NavbarInline'; 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": "#services" }, { "name": "Галерия", "href": "#gallery" }, { "name": "Отзиви", "href": "#testimonials" }, { "name": "Контакти", "href": "#contact" }, { "name": "About", "href": "#about" }, { "name": "Why Raw", "href": "#why-raw" } ]; return (
); }