From 8514781622857054a102a2147c422fef10a1b9ec Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 04:35:35 +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 02c9f0e..8c9e42c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 04:35:38 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 102 ++++++++++++++------------------------ 1 file changed, 38 insertions(+), 64 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8c9e42c..9bd98d0 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Listings", - "href": "#listings" + "name": "Listings", "href": "#listings" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,68 +35,49 @@ export default function Layout() { + logo="PropertySeller" + logoImageSrc="http://img.b2bpic.net/free-photo/home-icon-sign-front-side_187299-39255.jpg" + ctaButton={{ + text: "Contact Us", href: "#contact"}} + navItems={navItems} + />
+ label: "Terms of Service", href: "#"}, + ]} + /> ); -- 2.49.1