From f0d9adfb56dc8b8518e9e93ac2172a43ac559995 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 17 Apr 2026 14:48:11 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/App.tsx --- src/App.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 491d662..2f78ec1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -19,19 +19,19 @@ export default function App() { navItems={[ { name: "Rooms", - id: "rooms", + href: "#rooms", }, { name: "Dining", - id: "dining", + href: "#dining", }, { name: "Amenities", - id: "amenities", + href: "#amenities", }, { name: "Contact", - id: "contact", + href: "#contact", }, ]} ctaButton={{ -- 2.49.1 From 1ec7da495e669aaa160d6fedfa89a98a25bcbddf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 14:48:24 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 453 +++++++++++++++------------------------------------- 1 file changed, 131 insertions(+), 322 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 2f78ec1..7bf733c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,341 +13,150 @@ import { MapPin, Sparkles, Utensils } from "lucide-react"; export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + ]} + copyright="© 2024 Grand Hotel. All rights reserved." + links={[{ label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }]} + /> + ); } -- 2.49.1