From 284ff65afd5d56dd080ee85680fc3c6b5fe7d4ab Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 11:06:55 +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 ba54339..a5003c5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 11:06:58 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 85 +++++++++++++++------------------------ 1 file changed, 32 insertions(+), 53 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a5003c5..175d27c 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Trust", - "href": "#trust" + "name": "Trust", "href": "#trust" }, { - "name": "Process", - "href": "#process" + "name": "Process", "href": "#process" }, { - "name": "Cta", - "href": "#cta" + "name": "Cta", "href": "#cta" } ]; @@ -42,56 +35,42 @@ export default function Layout() { + logo="Newton" + logoImageSrc="https://images.pexels.com/photos/7430708/pexels-photo-7430708.jpeg?auto=compress&cs=tinysrgb&h=650&w=940" + ctaButton={{ + text: "Anfrage", href: "#contact"}} + navItems={navItems} />
+ label: "Impressum", href: "#"}, + ]} + /> ); -- 2.49.1