diff options
author | Kevin <[email protected]> | 2024-10-09 20:38:44 -0300 |
---|---|---|
committer | Kevin <[email protected]> | 2024-10-09 20:38:44 -0300 |
commit | e6c35cb90f01149928baaa6959f5e1744efbb9b2 (patch) | |
tree | 74dfc6400a0ca6ca1ef693f4d262a3df8a9dea3b /docs/showcases/showcases.ts | |
parent | 49ca1b866de7c1ea7b6762c07717e494470c2d7a (diff) |
Added hover effects to Showcases
Diffstat (limited to 'docs/showcases/showcases.ts')
-rw-r--r-- | docs/showcases/showcases.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts index 2b23aca..f4899c2 100644 --- a/docs/showcases/showcases.ts +++ b/docs/showcases/showcases.ts @@ -2,6 +2,7 @@ type Showcase = { label: string; src: string; url: string; + icon: string; // https://devicon.dev/ }; type Grid<T> = T | [T, T] | [T, T, T] | [T, T, T, T]; @@ -11,11 +12,13 @@ export default [ label: "Placeholder (this is an ags v1 screenshot)", src: "/astal/showcase/aylur.png", url: "https://github.com/Aylur/dotfiles", + icon: "devicon-javascript-plain", }, { label: "Idk I just love oxocarbon", src: "/astal/showcase/contrib1.webp", url: "https://github.com/tokyob0t/dotfiles", + icon: "devicon-lua-plain", }, // add mowe shuwucases hewe~ ] satisfies Array<Grid<Showcase>>; |