diff options
author | Kevin <[email protected]> | 2024-10-09 15:07:50 -0300 |
---|---|---|
committer | Kevin <[email protected]> | 2024-10-09 15:07:50 -0300 |
commit | 49ca1b866de7c1ea7b6762c07717e494470c2d7a (patch) | |
tree | 83ca545c61f4b774c4f67c46fe5c7892b6daac54 /docs/showcases/showcases.ts | |
parent | eb41193d47d2c54168f6e0a7732a6307e7486338 (diff) |
Added contrib to showcases page
Diffstat (limited to 'docs/showcases/showcases.ts')
-rw-r--r-- | docs/showcases/showcases.ts | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts index 138ae7f..2b23aca 100644 --- a/docs/showcases/showcases.ts +++ b/docs/showcases/showcases.ts @@ -1,15 +1,21 @@ type Showcase = { - label: string - src: string - url: string -} + label: string; + src: string; + url: string; +}; -type Grid<T> = T - | [T, T] - | [T, T, T] - | [T, T, T, T] +type Grid<T> = T | [T, T] | [T, T, T] | [T, T, T, T]; export default [ - { label: "Placeholder (this is an ags v1 screenshot)", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" }, - // add more showcases here -] satisfies Array<Grid<Showcase>> + { + label: "Placeholder (this is an ags v1 screenshot)", + src: "/astal/showcase/aylur.png", + url: "https://github.com/Aylur/dotfiles", + }, + { + label: "Idk I just love oxocarbon", + src: "/astal/showcase/contrib1.webp", + url: "https://github.com/tokyob0t/dotfiles", + }, + // add mowe shuwucases hewe~ +] satisfies Array<Grid<Showcase>>; |