From 8307011c6b757283c1c76fac969af58de089428a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 11:22:10 +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 5015471..77e15ab 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 11:22:13 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 47 ++++++++++++--------------------------- 1 file changed, 14 insertions(+), 33 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 77e15ab..b2349f9 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": "Experience", - "href": "#experience" + "name": "Experience", "href": "#experience" }, { - "name": "Amenities", - "href": "#amenities" + "name": "Amenities", "href": "#amenities" }, { - "name": "Rooms", - "href": "#rooms" + "name": "Rooms", "href": "#rooms" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,29 +51,19 @@ export default function Layout() { { items: [ { - label: "Rooms", - href: "#rooms", - }, + label: "Rooms", href: "#rooms"}, { - label: "Dining", - href: "#", - }, + label: "Dining", href: "#"}, { - label: "Spa", - href: "#", - }, + label: "Spa", href: "#"}, ], }, { items: [ { - label: "Contact", - href: "#", - }, + label: "Contact", href: "#"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, ], }, ]} -- 2.49.1