diff --git a/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx b/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx index b64ef17..d0e4b70 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.Screenshots.tsx @@ -1,21 +1,63 @@ -import { Card, Carousel } from "flowbite-react"; +import { Card } from "flowbite-react"; import Image from "next/image"; +import { Swiper, SwiperSlide } from "swiper/react"; +import "swiper/css"; +import "swiper/css/navigation"; +import "swiper/css/pagination"; +import "swiper/css/autoplay"; +import { Navigation, Pagination, Autoplay } from "swiper/modules"; + export const ReleaseInfoScreenshots = (props: { images: string[] }) => { return ( - - {props.images.map((image: string, index: number) => ( - - ))} - + + {props.images.map((image: string, index: number) => { + return ( + + + + ); + })} + ); };