From db4196937317d16f908b63a7cb5fba5be57c37db Mon Sep 17 00:00:00 2001 From: seth Date: Mon, 4 Mar 2024 13:38:24 -0500 Subject: footer: fix links for some gifs --- src/components/Footer.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components') diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 4f7286f..7897b8d 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -12,9 +12,9 @@ const { stdout: gitCommit } = await execa("git", ["rev-parse", "HEAD"]); gifs.map(({ gif, alt }) => { const img = ; - if (gif.src.includes("steam.gif")) { + if (gif.src.includes("steam")) { return {img}; - } else if (gif.src.includes("poweredbynix.svg")) { + } else if (gif.src.includes("poweredbynix")) { return {img}; } else { return img; -- cgit v1.2.3