From de9e60d92429d6d7cd7765de2c1d4d254ceec7b8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 19:58:12 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 114 ++++++++------------------------------ 1 file changed, 22 insertions(+), 92 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 7457a69..7cc9578 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,101 +1,31 @@ -import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; +import { Outlet } from 'react-router-dom'; 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": "Úvod", - "href": "#hero" - }, - { - "name": "Služby", - "href": "#features" - }, - { - "name": "O mně", - "href": "#about" - }, - { - "name": "Prodejna", - "href": "#prodejna" - }, - { - "name": "Kontakt", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - } -]; - return ( - - - - - -
+
+ +
- - - - +
); }