This commit is contained in:
2025-07-12 00:16:46 +02:00
parent 6932610e86
commit 4d1d7026b0

View File

@ -11,8 +11,12 @@ type Props = {
const GalleryCarousel: React.FC<Props> = ({ videos, photos }): JSX.Element => {
return (
<Carousel
variant="light"
>
withIndicators
height={200}
slideSize="33.333333%"
slideGap="md"
loop
align="start" >
{photos.map((photo, index) => (
<ImageViewer key={`gallery-photo-${index}`} url={photo} />
))}