From f43a19ec932bd8693090dd11d22eb78e6d0305ac Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 19:47:15 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b1e1ab4..3b04544 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -45,7 +45,7 @@ export default function Layout() { logo="BAU-PROJEKTE" ctaButton={{ text: "Angebot anfragen", - id: "#contact", + href: "#contact", }} navItems={navItems} /> -- 2.49.1 From 936a739c60b1a589492b8278bcc640ca8e3da0cd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 19:47:19 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 57 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3b04544..43be4bb 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": "Leistungen", - "href": "#leistungen" + "name": "Leistungen", "href": "#leistungen" }, { - "name": "Referenzen", - "href": "#referenzen" + "name": "Referenzen", "href": "#referenzen" }, { - "name": "Über uns", - "href": "#about" + "name": "Über uns", "href": "#about" }, { - "name": "Kontakt", - "href": "#contact" + "name": "Kontakt", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Prozess", - "href": "#prozess" + "name": "Prozess", "href": "#prozess" }, { - "name": "Vertrauen", - "href": "#vertrauen" + "name": "Vertrauen", "href": "#vertrauen" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,43 +48,29 @@ export default function Layout() { brand="BAU-PROJEKTE GMBH" columns={[ { - title: "Links", - items: [ + title: "Links", items: [ { - label: "Impressum", - href: "#", - }, + label: "Impressum", href: "#"}, { - label: "Datenschutz", - href: "#", - }, + label: "Datenschutz", href: "#"}, ], }, { - title: "Kontakt", - items: [ + title: "Kontakt", items: [ { - label: "info@bau-projekte.de", - href: "mailto:info@bau-projekte.de", - }, + label: "info@bau-projekte.de", href: "mailto:info@bau-projekte.de"}, { - label: "+49 123 456789", - href: "tel:+49123456789", - }, + label: "+49 123 456789", href: "tel:+49123456789"}, ], }, ]} copyright="© 2024 BAU-PROJEKTE GMBH. Alle Rechte vorbehalten." - imageSrc="http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283287.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283287.jpg" links={[ { - label: "Startseite", - href: "#", - }, + label: "Startseite", href: "#"}, { - label: "Leistungen", - href: "#leistungen", - }, + label: "Leistungen", href: "#leistungen"}, ]} /> -- 2.49.1