From 25ab674e43c2f5393bd66317f7d64d34114a4bc7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 25 Jun 2026 10:49:17 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 06269f8..4eb9270 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Thu, 25 Jun 2026 10:49:20 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 72 ++++++++++++--------------------------- 1 file changed, 21 insertions(+), 51 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4eb9270..ba94c01 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Expertise", - "href": "#expertise" + "name": "Expertise", "href": "#expertise" }, { - "name": "Properties", - "href": "#properties" + "name": "Properties", "href": "#properties" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Partners", - "href": "#partners" + "name": "Partners", "href": "#partners" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,59 +49,38 @@ export default function Layout() { brand="Ing. Tomáš Kocman - RE/MAX Synergy" columns={[ { - title: "Služby", - items: [ + title: "Služby", items: [ { - label: "Prodej nemovitostí", - href: "#properties", - }, + label: "Prodej nemovitostí", href: "#properties"}, { - label: "Nákup nemovitostí", - href: "#properties", - }, + label: "Nákup nemovitostí", href: "#properties"}, { - label: "Pronájmy", - href: "#properties", - }, + label: "Pronájmy", href: "#properties"}, ], }, { - title: "O mně", - items: [ + title: "O mně", items: [ { - label: "Profil makléře", - href: "#expertise", - }, + label: "Profil makléře", href: "#expertise"}, { - label: "Reference", - href: "#testimonials", - }, + label: "Reference", href: "#testimonials"}, ], }, { - title: "Kontakt", - items: [ + title: "Kontakt", items: [ { - label: "Email", - href: "mailto:tomas.kocman@remax.cz", - }, + label: "Email", href: "mailto:tomas.kocman@remax.cz"}, { - label: "Telefon", - href: "tel:+420123456789", - }, + label: "Telefon", href: "tel:+420123456789"}, ], }, ]} copyright="© 2024 Ing. Tomáš Kocman, RE/MAX Synergy. Všechna práva vyhrazena." links={[ { - label: "GDPR", - href: "#", - }, + label: "GDPR", href: "#"}, { - label: "Obchodní podmínky", - href: "#", - }, + label: "Obchodní podmínky", href: "#"}, ]} /> -- 2.49.1