Files
ignum/components/HomeMarquee.tsx
nabijonovdavronbek619@gmail.com ff21ccb2af home page parts
2026-01-22 20:45:26 +05:00

52 lines
1.5 KiB
TypeScript

import Image from "next/image";
import Marquee from "react-fast-marquee";
export default function HomeMarquee() {
return (
<div className="bg-[#1e1d1c] py-5">
<Marquee>
<div className="relative sm:w-125 w-70 sm:h-62.5 h-40 mx-2 overflow-hidden rounded-xl">
<Image
src="/images/home/videoSlide1.jpg"
alt="images"
fill
priority
className="object-cover"
/>
</div>
<div className="relative sm:w-125 w-70 sm:h-62.5 h-40 mx-2 overflow-hidden rounded-xl">
<Image
src="/images/home/videoSlide2.jpg"
alt="images"
fill
className="object-cover"
/>
</div>
<div className="relative sm:w-125 w-70 sm:h-62.5 h-40 mx-2 overflow-hidden rounded-xl">
<Image
src="/images/home/videoSlide3.jpeg"
alt="images"
fill
className="object-cover"
/>
</div>
<div className="relative sm:w-125 w-70 sm:h-62.5 h-40 mx-2 overflow-hidden rounded-xl">
<Image
src="/images/home/videoSlide4.jpg"
alt="images"
fill
className="object-cover"
/>
</div>
<div className="relative sm:w-125 w-70 sm:h-62.5 h-40 mx-2 overflow-hidden rounded-xl">
<Image
src="/images/home/videoSlide5.jpeg"
alt="images"
fill
className="object-cover"
/>
</div>
</Marquee>
</div>
);
}