--- // 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 }; ---