---
import Contenido_2025_Montevideo from "./Contenido_2025_Montevideo.astro";

const {
    items,
} = Astro.props;
 
---
<div class="w-full flex flex-row flex-wrap items-center justify-center mb-4">
    <div class="max-w-7xl gap-3 flex flex-col md:flex-row flex-nowrap items-stretch justify-center mb-0">
        {items.map(item => (

            <Contenido_2025_Montevideo 
                link={item.link}
                image={item.image}
                altImage={item.altImage}
                title={item.title}
                description={item.description}
            />
            
        ))}
    </div>
</div>