summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorseth <[email protected]>2024-03-04 13:38:24 -0500
committerseth <[email protected]>2024-03-04 13:38:24 -0500
commitdb4196937317d16f908b63a7cb5fba5be57c37db (patch)
tree5a3472296e9e710b27c62f8ca3c0e29bfdec3deb /src/components
parent63272088d3bed7da78e4a072805c80cc483ebd3d (diff)
footer: fix links for some gifs
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Footer.astro4
1 files changed, 2 insertions, 2 deletions
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 = <Picture src={gif} alt={alt} formats={["gif"]} />;
- if (gif.src.includes("steam.gif")) {
+ if (gif.src.includes("steam")) {
return <a href="https://dnsense.pub/">{img}</a>;
- } else if (gif.src.includes("poweredbynix.svg")) {
+ } else if (gif.src.includes("poweredbynix")) {
return <a href="https://github.com/sakecode">{img}</a>;
} else {
return img;