From a91039f8712718687704d88ff0a83408a759c7ed Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 07:12:24 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3fb8b37..43df47f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -84,6 +84,10 @@ export default function Layout() { }, ]} copyright="© 2016-2024 LA BOHÉM. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ]} /> -- 2.49.1 From 21157400e62a320f4217fddd220f2b0d5a67d791 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 07:12:27 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 52 +++++++++++---------------------------- 1 file changed, 15 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 43df47f..82bc02d 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": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "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" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,37 +48,24 @@ export default function Layout() { brand="LA BOHÉM" columns={[ { - title: "Studio", - items: [ + title: "Studio", items: [ { - label: "Lönnrotinkatu 16", - href: "#", - }, + label: "Lönnrotinkatu 16", href: "#"}, { - label: "Kamppi, Helsinki", - href: "#", - }, + label: "Kamppi, Helsinki", href: "#"}, ], }, { - title: "Social", - items: [ + title: "Social", items: [ { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, { - label: "Pinterest", - href: "#", - }, + label: "Pinterest", href: "#"}, ], }, ]} copyright="© 2016-2024 LA BOHÉM. All rights reserved." - links={[ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" } - ]} + links={[]} /> -- 2.49.1