From e083a8bd0787ac9400cd53f2aaf7349fe0851c04 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 11 Jun 2026 15:52:01 +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 36dfd1a..4a80694 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -47,6 +47,7 @@ export default function Layout() { href: "#contact", }} logo="Luxury Hotel" + logoImageSrc="https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=100&h=100&q=80" navItems={navItems} />
-- 2.49.1 From 5fd93a4fcd45daa70688475c3485db004a441811 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 15:52:12 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 80 +++++++++++---------------------------- 1 file changed, 23 insertions(+), 57 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4a80694..f529690 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,67 +49,42 @@ export default function Layout() { brand="Luxury Hotel" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Our Rooms", - href: "#rooms", - }, + label: "Our Rooms", href: "#rooms"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { - title: "Guest Services", - items: [ + title: "Guest Services", items: [ { - label: "FAQ", - href: "#faq", - }, + label: "FAQ", href: "#faq"}, { - label: "Concierge", - href: "#", - }, + label: "Concierge", href: "#"}, { - label: "Special Offers", - href: "#", - }, + label: "Special Offers", href: "#"}, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "Reservations", - href: "#", - }, + label: "Reservations", href: "#"}, { - label: "Newsletter", - href: "#", - }, + label: "Newsletter", href: "#"}, ], }, ]} copyright="© 2024 Luxury Hotel. 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