diff options
| author | seth <[email protected]> | 2024-04-08 22:58:22 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-04-08 22:58:22 -0400 |
| commit | d8a20e3032a0ce97b6ddc29840e135eda9b3f43c (patch) | |
| tree | 40a4059020ff4c9d500d4022f5b84e7bf2c46fd4 /src/assets/gifs/index.ts | |
| parent | 33a4eb02a8307be1bcfaaabbe3adaf25d0088d3b (diff) | |
refactor; use plain css
Diffstat (limited to 'src/assets/gifs/index.ts')
| -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 970985f..58fa23d 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 { - gif: ImageMetadata; - alt: string; + image: 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" }, + { 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; |
