diff options
author | kotontrion <[email protected]> | 2024-10-29 13:50:41 +0100 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-10-29 13:50:41 +0100 |
commit | 57f20666e716fde56579b8aa638eed1264f793de (patch) | |
tree | 59b2ebbd770c80049cea4df82109d28f617675fe /docs/showcases/showcases.ts | |
parent | 4d9ae88b0bab75779876d465f986791d052414ca (diff) | |
parent | 7e484188e7492ac7945c854bcc3f26cec1863c91 (diff) |
Merge branch 'main' into feat/cava
Diffstat (limited to 'docs/showcases/showcases.ts')
-rw-r--r-- | docs/showcases/showcases.ts | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts index 138ae7f..2aea04a 100644 --- a/docs/showcases/showcases.ts +++ b/docs/showcases/showcases.ts @@ -1,15 +1,38 @@ type Showcase = { - label: string - src: string + image: 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] +// TODO: support more layouts +type Grid<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 + { + image: "/astal/showcase/aylur.png", + url: "https://github.com/Aylur/dotfiles", + icon: "devicon-typescript-plain", + description: "Placeholder (this is an ags v1 screenshot)", + author: "Aylur", + }, + { + image: "/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", + }, + { + image: "/astal/showcase/kotontrion-kompass.webp", + url: "https://github.com/kotontrion/kompass", + icon: "devicon-vala-plain", + title: "kompass", + author: "kotontrion", + }, + + // add more showcases here~ ] satisfies Array<Grid<Showcase>> |