summaryrefslogtreecommitdiff
path: root/src/assets/gifs/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/gifs/index.ts')
-rw-r--r--src/assets/gifs/index.ts26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/assets/gifs/index.ts b/src/assets/gifs/index.ts
deleted file mode 100644
index 0525584..0000000
--- a/src/assets/gifs/index.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import acab from "./acab.gif";
-import arnold from "./arnold.gif";
-import capitalism from "./capitalism.gif";
-import legalize from "./legalize.gif";
-import poweredByNix from "./poweredbynix.svg";
-import pride from "./pride.gif";
-import steam from "./steam.gif";
-import weezer from "./weezer.gif";
-
-interface Gif {
- image: ImageMetadata;
- alt: string;
-}
-
-const gifs: Gif[] = [
- { image: acab, alt: "ACAB!" },
- { image: arnold, alt: "Hey Arnold!" },
- { image: capitalism, alt: "Let's crush capitalism!" },
- { image: legalize, alt: "Legalize marijuana now!" },
- { image: poweredByNix, alt: "Powered by NixOS" },
- { image: pride, alt: "LGBTQ Pride now!" },
- { image: steam, alt: "Play on Steam!" },
- { image: weezer, alt: "Weezer fan" },
-];
-
-export default gifs;