diff --git a/src/components/UserHeader/RecomendedSliders.jsx b/src/components/UserHeader/RecomendedSliders.jsx
new file mode 100644
index 0000000..3f99d00
--- /dev/null
+++ b/src/components/UserHeader/RecomendedSliders.jsx
@@ -0,0 +1,254 @@
+import React, { useRef } from "react";
+import top from "../../assets/images/top-buyer-1png.png";
+import top2 from "../../assets/images/top-buyer-2.png";
+import top3 from "../../assets/images/top-buyer-3.png";
+import top4 from "../../assets/images/top-buyer-4.png";
+import Icons from "../Helpers/Icons";
+import SliderCom from "../Helpers/SliderCom";
+
+export default function RecomendedSliders({ className }) {
+ const settings = {
+ arrows: false,
+ dots: false,
+ infinite: true,
+ autoplay: true,
+ slidesToShow: 4,
+ slidesToScroll: 1,
+ responsive: [
+ {
+ breakpoint: 426,
+ settings: {
+ slidesToShow: 2,
+ slidesToScroll: 1,
+ },
+ },
+ ],
+ };
+ const sellSlider = useRef(null);
+ const buySlider = useRef(null);
+ const prevHandler = (value) => {
+ if (value === "sell") {
+ sellSlider.current.slickPrev();
+ }
+ if (value === "buy") {
+ buySlider.current.slickPrev();
+ }
+ };
+ const nextHandler = (value) => {
+ if (value === "sell") {
+ sellSlider.current.slickNext();
+ }
+ if (value === "buy") {
+ buySlider.current.slickNext();
+ }
+ };
+ return (
+ <>
+ {/*
*/}
+ {/*
*/}
+ {/* Top Seller*/}
+ {/*
*/}
+ {/*
*/}
+ {/*
*/}
+ {/*
*/}
+ {/*
*/}
+ {/*
*/}
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+ {/* title */}
+
+
+ This is short title
+
+
+ {/* username */}
+
+
+ Some wondersull text here and more
+
+
+ {/* items */}
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/index.css b/src/index.css
index 41f66de..75b3d78 100644
--- a/src/index.css
+++ b/src/index.css
@@ -34,6 +34,12 @@
width: 100%;
text-align: center;
}
+.commonHeaderSliderItem{
+ background-color: aliceblue;
+ border-radius: 10px;
+ margin: 0px 5px 0px 5px;
+ height: 95px;
+}
.offer-slide-item{
background: rgb(2,0,36);
background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(3,51,2,0.782125350140056) 0%, rgba(0,212,255,0.07904411764705888) 0%, rgba(153,182,201,1) 99%);