import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarCentered from '@/components/ui/NavbarCentered'; 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": "Startseite", "href": "#hero" }, { "name": "Über uns", "href": "#about" }, { "name": "Produkte", "href": "#products" }, { "name": "Kontakt", "href": "#contact" }, { "name": "Features", "href": "#features" }, { "name": "Metrics", "href": "#metrics" }, { "name": "Testimonials", "href": "#testimonials" } ]; return (
); }