diff options
Diffstat (limited to 'src/assets')
| -rw-r--r-- | src/assets/gifs/index.ts | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/assets/gifs/index.ts b/src/assets/gifs/index.ts index 58fa23d..0525584 100644 --- a/src/assets/gifs/index.ts +++ b/src/assets/gifs/index.ts @@ -8,19 +8,19 @@ import steam from "./steam.gif"; import weezer from "./weezer.gif"; interface Gif { - image: ImageMetadata; - alt: string; + 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" } + { 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; |
