);
}
diff --git a/client/src/components/AboutProject/SliderMobile.tsx b/client/src/components/AboutProject/SliderMobile.tsx
new file mode 100644
index 0000000..be7407e
--- /dev/null
+++ b/client/src/components/AboutProject/SliderMobile.tsx
@@ -0,0 +1,115 @@
+/* eslint-disable react-hooks/exhaustive-deps */
+import { useEffect, useRef, useState } from "react";
+import { useSwipeable } from "react-swipeable";
+
+const slides = [
+ {
+ image: "/images/pages/AboutProject/slider/1.jpg",
+ title: "Rove Home",
+ desc1:
+ "Rove Home branded residences are an extension of the Rove Hotels brand. These branded residences are for hassle-free living, with personalized expressions of your ideal living environment. ",
+ desc2:
+ "We’ve handpicked prime locations to ensure you get the very best. From interiors that uplift and energise, and amenities that are thoughtful and engaging to contemporarily stylish yet cosy apartments, we decided that this is the kind of place where we’d like to live – so we set out to build exactly that. We think you’ll agree.",
+ },
+ {
+ image: "/images/pages/AboutProject/slider/2.jpg",
+ title: "A home for the young and young-at-heart",
+ desc1:
+ "The dynamic essence of Rove comes to life at an all new address - Marasi Drive, Business Bay. Enjoy an urban living experience beyond the ordinary. Join us on this exciting journey as we unfold innovations transforming your daily moments into unforgettable living experiences in true Rove style. ",
+ desc2:
+ "Enjoy every facet of contemporary lifestyle living, prioritizing value, efficiency, and a vibrant atmosphere. It is more than just a home.",
+ },
+ {
+ image: "/images/pages/AboutProject/slider/3.jpg",
+ title: "Marasi Drive",
+ desc1:
+ "In the heart of Dubai’s Business Bay, Marasi Drive offers a captivating canal-side stroll in a vibrant central district, blending residential, commercial, and leisure amenities seamlessly. ",
+ desc2:
+ "Marasi Drive’s proximity to Downtown Dubai, grants easy access to its iconic attractions, its strategic location ensures seamless connectivity to Al Khail Road and Sheikh Zayed Road, facilitating effortless travel across the city and beyond",
+ },
+ {
+ image: "/images/pages/AboutProject/slider/4.jpg",
+ title: "Unique and innovative",
+ desc1:
+ "At Rove Home Marasi Drive, you can feel the exhilaration in the atmosphere! We’ve expertly crafted an urban oasis where captivating design, vibrant art, and cutting-edge technology come together seamlessly. ",
+ desc2:
+ "Our commitment to shaping a space that tickles your artistic sensibilities and ignites your love for innovation is unparalleled. It’s a place that would surely excite and delight Rovers like no other!",
+ },
+];
+
+function SliderMobile() {
+ const [selectedIndex, setSelectedIndex] = useState(0);
+ const [width, setWidth] = useState(0);
+ const refImages = useRef(null);
+
+ const handlers = useSwipeable({
+ onSwipedLeft: next,
+ onSwipedRight: prev,
+ trackMouse: true,
+ });
+
+ function next() {
+ if (selectedIndex === slides.length - 1) return;
+ setSelectedIndex((prev) => (prev + 1) % slides.length);
+ }
+
+ function prev() {
+ if (selectedIndex === 0) return;
+ setSelectedIndex((prev) => (prev - 1 + slides.length) % slides.length);
+ }
+
+ useEffect(() => {
+ setWidth(refImages.current!.clientWidth);
+ }, []);
+
+ return (
+