From a874e1d5f74716e89d985fe1179c3d02554ef800 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 19 Jun 2026 13:05:28 +0000 Subject: [PATCH] Bob AI: Populate src/pages/RoomReservationPage.tsx (snippet builder, 3 sections) --- src/pages/RoomReservationPage.tsx | 141 +++++++----------------------- 1 file changed, 34 insertions(+), 107 deletions(-) diff --git a/src/pages/RoomReservationPage.tsx b/src/pages/RoomReservationPage.tsx index 65b835e..fbe5309 100644 --- a/src/pages/RoomReservationPage.tsx +++ b/src/pages/RoomReservationPage.tsx @@ -1,111 +1,38 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps"; -import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AvatarGroup from "@/components/ui/AvatarGroup"; +import { Check } from "lucide-react"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; export default function RoomReservationPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Book Now", href: "/room-reservation" }} - /> - -
- - - - -
- console.log("Book Deluxe King") - }, - { - name: "Ocean View Suite", - price: "$450 / night", - imageSrc: "https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&q=80", - onClick: () => console.log("Book Ocean View") - }, - { - name: "Standard Double", - price: "$180 / night", - imageSrc: "https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&q=80", - onClick: () => console.log("Book Standard Double") - } - ]} - /> -
-
- - -
+ <> +
+

Room Rates

Standard Room

6,000 DZD/ntA cozy and comfortable room perfect for solo travelers or short business trips.
1 Queen Bed
+
Free Wi-Fi
+
Air Conditioning
+
En-suite Bathroom
+

Deluxe Room

9,000 DZD/ntSpacious and elegantly furnished, ideal for couples or extended stays.
1 King Bed
+
City View
+
Mini-bar
+
Free Breakfast
+

Executive Suite

15,000 DZD/ntOur premium offering with a separate living area for ultimate comfort and luxury.
Separate Living Area
+
Premium Amenities
+
Room Service
+
Late Check-out
+
+ ); -} \ No newline at end of file +}