diff options
| author | seth <[email protected]> | 2024-02-12 20:29:15 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-13 00:24:08 -0500 |
| commit | 2cbc22348ef038181e1dc89635a3be005604a4ca (patch) | |
| tree | 33a33ffe0203b730078d01c5d7d3951239619ca9 /src/assets/gifs/index.ts | |
| parent | 05780c6b2d8b184122a32095c50363a6c8617d64 (diff) | |
back to astro
Diffstat (limited to 'src/assets/gifs/index.ts')
| -rw-r--r-- | src/assets/gifs/index.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/assets/gifs/index.ts b/src/assets/gifs/index.ts new file mode 100644 index 0000000..970985f --- /dev/null +++ b/src/assets/gifs/index.ts @@ -0,0 +1,26 @@ +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 { + gif: ImageMetadata; + alt: string; +} + +const gifs: Gif[] = [ + { gif: acab, alt: "ACAB!" }, + { gif: arnold, alt: "Hey Arnold!" }, + { gif: capitalism, alt: "Let's crush capitalism!" }, + { gif: legalize, alt: "Legalize marijuana now!" }, + { gif: poweredByNix, alt: "Powered by NixOS" }, + { gif: pride, alt: "LGBTQ Pride now!" }, + { gif: steam, alt: "Play on Steam!" }, + { gif: weezer, alt: "Weezer fan" }, +]; + +export default gifs; |
