This commit is contained in:
2024-08-12 18:56:16 +05:00
parent b501321a3f
commit f05047910b
11 changed files with 1489 additions and 2248 deletions
@@ -49,8 +49,8 @@ function SkyGardenSlider() {
}px + ${currentSlideIndex * 32}px))`,
}}
>
{images.map((image) => (
<img src={image} alt="" className="rounded-2xl" />
{images.map((image, index) => (
<img key={index} src={image} alt="" className="rounded-2xl" />
))}
</div>
)}