From fc1d6222df9110e4e00d55d5ae8b1c4d329187b4 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:36:40 +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 c5d6f76..9465f87 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 12:36:44 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 57 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9465f87..68d7d19 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": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Product", - "href": "#product" + "name": "Product", "href": "#product" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,42 +49,28 @@ export default function Layout() { brand="PropManager" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { - label: "Support", - href: "#faq", - }, + label: "Support", href: "#faq"}, { - label: "Guide", - href: "#", - }, + label: "Guide", href: "#"}, ], }, ]} copyright="© 2024 PropManager Inc. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} imageSrc="http://img.b2bpic.net/free-photo/isolated-white-house-silhouette-minimal-black-landscape_1194-641505.jpg" /> -- 2.49.1