diff --git a/src/pages/HomePage/sections/Rooms.tsx b/src/pages/HomePage/sections/Rooms.tsx index 2ee9e1f..401f7c3 100644 --- a/src/pages/HomePage/sections/Rooms.tsx +++ b/src/pages/HomePage/sections/Rooms.tsx @@ -1,62 +1,110 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "rooms" section. - import React from 'react'; -import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; export default function RoomsSection(): React.JSX.Element { + const items = [ + { + imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9643.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-beautiful-luxury-dark-wood-european-classic-bedroom-suite-hotel_105762-2164.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/steel-faucet-bathtub-bathroom-interior-with-window_169016-26296.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/men-looking-out-window-cafe_23-2147775903.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/spa-complements_23-2147645728.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-gym_23-2148503087.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-suite-resort-high-rise-hotel-with-working-table_105762-1783.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/relaxing-area-with-two-chairs-small-table_1203-3222.jpg", + href: "#", + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/modern-studio-apartment-design-with-bedroom-living-space_1262-12375.jpg", + href: "#", + }, + ]; + + const spans = [ + "md:col-span-2", + "md:col-span-1", + "md:col-span-1", + "md:col-span-1", + "md:col-span-2", + "md:col-span-1", + "md:col-span-1", + "md:col-span-1", + "md:col-span-2", + "md:col-span-2", + ]; + return ( -
- - - -
+
+ +
+
+
+

Our Accommodations

+
+ + + + +
+ + +
+ {items.map((item, index) => ( + + + + ))} +
+
+
+
+
); -} +} \ No newline at end of file