From 0941e17b24c1db4d129eb3829644cd9f2209048f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 21:33:23 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e1a692a..676013e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -57,7 +57,7 @@ export default function Layout() { brand="Zenith Hotel Oran" columns={[ { - title: "Links", + heading: "Links", items: [ { label: "About", @@ -74,7 +74,7 @@ export default function Layout() { ], }, { - title: "Help", + heading: "Help", items: [ { label: "FAQ", -- 2.49.1 From 0c59d2669258d651f5014ac19d2152bfee22a336 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 21:33:26 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 51 +++++++++++---------------------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 676013e..1c45f18 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": "Amenities", - "href": "#features" + "name": "Amenities", "href": "#features" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,37 +48,23 @@ export default function Layout() { brand="Zenith Hotel Oran" columns={[ { - heading: "Links", items: [ { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Rooms", - href: "#pricing", - }, + label: "Rooms", href: "#pricing"}, { - label: "Amenities", - href: "#features", - }, + label: "Amenities", href: "#features"}, ], }, { - heading: "Help", items: [ { - label: "FAQ", - href: "#faq", - }, + label: "FAQ", href: "#faq"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, ], }, ]} -- 2.49.1