From 75c1a6b5565bed6856a3845171b9747b0747d4d5 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 23:00:05 +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 5b6dc33..00b83af 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 23:00:08 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 59 ++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 35 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 00b83af..2c71390 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Services", - "href": "#features" + "name": "Services", "href": "#features" }, { - "name": "Results", - "href": "#metrics" + "name": "Results", "href": "#metrics" }, { - "name": "Case Studies", - "href": "#testimonials" + "name": "Case Studies", "href": "#testimonials" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" } ]; @@ -43,33 +36,29 @@ export default function Layout() { + logo="AI Consulting" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=wl4pt0" + ctaButton={{ + text: "Schedule Audit", href: "#contact"}} + navItems={navItems} + />
+ brand="AI Consulting Agency" + copyright="© 2024 AI Consulting Agency. All rights reserved." + socialLinks={[ + { + icon: "Twitter"}, + { + icon: "Linkedin"}, + { + icon: "Github"}, + ]} + /> ); -- 2.49.1