From a568b2fa2847d5bec254f32e677b7ee5ad69c8a6 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 05:10:44 +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 a04ff93..f4e96d2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 05:10:47 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 52 ++++++++++++--------------------------- 1 file changed, 16 insertions(+), 36 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f4e96d2..9e00201 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": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonial", - "href": "#testimonial" + "name": "Testimonial", "href": "#testimonial" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,37 +49,26 @@ export default function Layout() { brand="Imperial Majesty" columns={[ { - title: "Location", - items: [ + title: "Location", items: [ { - label: "123 Royale St, London", - }, + label: "123 Royale St, London"}, ], }, { - title: "Experience", - items: [ + title: "Experience", items: [ { - label: "Chef's Table", - href: "#", - }, + label: "Chef's Table", href: "#"}, { - label: "Private Events", - href: "#", - }, + label: "Private Events", href: "#"}, ], }, ]} copyright="© 2024 Imperial Majesty. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} /> -- 2.49.1