From 953be98a0c0a5a6e7dd24c82c2f32ba3fc3ade29 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 12:35:31 +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 75ee240..611bc60 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 12:35:34 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 95 +++++++++++++++------------------------ 1 file changed, 36 insertions(+), 59 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 611bc60..45ea222 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": "Properties", - "href": "#products" + "name": "Properties", "href": "#products" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#metrics" + "name": "Services", "href": "#metrics" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,63 +35,47 @@ export default function Layout() { + logo="Twino Estate" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=yu44zm" + ctaButton={{ + text: "Book Viewing", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Twino Estate. All rights reserved." + rightText="Professional real estate agency." + /> ); -- 2.49.1