From 73605eb5b251a55fea617baf1d114e4ebcd733d8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 18:46:13 +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 48465ff..f9d0bed 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 18:46:16 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 69 ++++++++++++--------------------------- 1 file changed, 20 insertions(+), 49 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f9d0bed..60ed787 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": "Rooms", - "href": "#rooms" + "name": "Rooms", "href": "#rooms" }, { - "name": "Amenities", - "href": "#amenities" + "name": "Amenities", "href": "#amenities" }, { - "name": "Experience", - "href": "#experience" + "name": "Experience", "href": "#experience" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,54 +49,34 @@ export default function Layout() { brand="Blue Sky Hotel" columns={[ { - title: "Hotel", - items: [ + title: "Hotel", items: [ { - label: "Rooms", - href: "#rooms", - }, + label: "Rooms", href: "#rooms"}, { - label: "Gallery", - href: "#", - }, + label: "Gallery", href: "#"}, { - label: "Offers", - href: "#", - }, + label: "Offers", href: "#"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Help", - href: "#", - }, + label: "Help", href: "#"}, ], }, ]} copyright="© 2024 Blue Sky Hotel. All rights reserved." links={[ { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, { - label: "Facebook", - href: "#", - }, + label: "Facebook", href: "#"}, { - label: "LinkedIn", - href: "#", - }, + label: "LinkedIn", href: "#"}, ]} /> -- 2.49.1