import { Card, Carousel } from "flowbite-react"; import Image from "next/image"; export const ReleaseInfoScreenshots = (props: { images: string[] }) => { return ( {props.images.map((image: string, index: number) => ( ))} ); };