---
import Picture from "astro/components/Picture.astro";
import gifs from "@assets/gifs";
---
{
gifs.map(({ image, alt }) => {
const img =
;
if (image.src.includes("steam")) {
return
{img};
} else if (image.src.includes("poweredbynix")) {
return
{img};
} else {
return img;
}
})
}