From 0dbccf63c329457f3a89f69e4d20f93c1e41cdfb Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 22:21:02 +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 7c18d58..f6418f3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 22:21:05 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 ++++++++++++--------------------------- 1 file changed, 22 insertions(+), 54 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f6418f3..7312ee0 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": "Stays", - "href": "#" + "name": "Stays", "href": "#" }, { - "name": "Experiences", - "href": "#" + "name": "Experiences", "href": "#" }, { - "name": "Become a Host", - "href": "#" + "name": "Become a Host", "href": "#" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Comparison", - "href": "#comparison" + "name": "Comparison", "href": "#comparison" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,63 +49,40 @@ export default function Layout() { brand="VacationMarket" columns={[ { - title: "Product", - items: [ + title: "Product", items: [ { - label: "Stays", - href: "#", - }, + label: "Stays", href: "#"}, { - label: "Experiences", - href: "#", - }, + label: "Experiences", href: "#"}, { - label: "Host Tools", - href: "#", - }, + label: "Host Tools", href: "#"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About", - href: "#", - }, + label: "About", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, { - label: "Press", - href: "#", - }, + label: "Press", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ], }, ]} copyright="© 2024 VacationMarket Inc. All rights reserved." links={[ { - label: "Twitter", - href: "#", - }, + label: "Twitter", href: "#"}, { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, ]} /> -- 2.49.1