diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/public/showcase/aylur.png (renamed from docs/public/showcase/aylur1.png) | bin | 3202086 -> 3202086 bytes | |||
-rw-r--r-- | docs/public/showcase/contrib1.webp | bin | 0 -> 122412 bytes | |||
-rw-r--r-- | docs/showcases/showcases.ts | 28 |
3 files changed, 17 insertions, 11 deletions
diff --git a/docs/public/showcase/aylur1.png b/docs/public/showcase/aylur.png Binary files differindex 5dc5dd7..5dc5dd7 100644 --- a/docs/public/showcase/aylur1.png +++ b/docs/public/showcase/aylur.png diff --git a/docs/public/showcase/contrib1.webp b/docs/public/showcase/contrib1.webp Binary files differnew file mode 100644 index 0000000..94f6080 --- /dev/null +++ b/docs/public/showcase/contrib1.webp 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>>; |