--- // src/components/ImageCarousel.astro import "../styles/components/ImageCarousel.css"; interface Image { src: string; alt: string; } const { images = [], id } = Astro.props as { images: Image[], id?: string }; --- Galerie ❮ {images.map((image, index) => ( ))} ❯ {images.map((_, index) => ( ))}