diff options
Diffstat (limited to 'docs/showcases/showcases.ts')
-rw-r--r-- | docs/showcases/showcases.ts | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts index 138ae7f..8354cd8 100644 --- a/docs/showcases/showcases.ts +++ b/docs/showcases/showcases.ts @@ -1,15 +1,29 @@ type Showcase = { - label: string src: string url: string + icon?: string // https://devicon.dev/ + title?: string + description?: string + author: 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 + { + src: "/astal/showcase/aylur.png", + url: "https://github.com/Aylur/dotfiles", + icon: "devicon-javascript-plain", + description: "Placeholder (this is an ags v1 screenshot)", + author: "Aylur", + }, + { + src: "/astal/showcase/tokyob0t-super-duper-hiper-mega-ultra-contribution.webp", + url: "https://github.com/tokyob0t/dotfiles", + icon: "devicon-lua-plain", + title: "Tokyob0t's Desktop", + description: "Abandonad toda esperanza, vosotros que entráis aquí.", + author: "tokyob0t", + }, + // add more showcases here~ ] satisfies Array<Grid<Showcase>> |