summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
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;