From bd5f271693734c00ba07f3402a796678d77014fc Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 10:59:53 +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 b19f36a..2f783ce 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 10:59:57 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 106 ++++++++++++++------------------------ 1 file changed, 39 insertions(+), 67 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2f783ce..32679a8 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": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "How It Works", - "href": "#steps" + "name": "How It Works", "href": "#steps" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,71 +35,50 @@ export default function Layout() { + logo="3D Estates" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=b0l62i" + ctaButton={{ + text: "Start Your Tour", href: "#contact"}} + navItems={navItems} />
+ ]} + leftText="© 2024 3D Estates. All rights reserved." + rightText="Designed for real estate innovators." + /> ); -- 2.49.1