diff options
author | Aylur <[email protected]> | 2024-10-10 01:35:23 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-10 01:35:23 +0000 |
commit | 03f1a08f6e5996e5d3d7ff3952465c9c29b9f624 (patch) | |
tree | a42aa553e71cd56c25c47fd4413fa4370e52ad29 /docs/showcases/showcases.ts | |
parent | 68b2cdaa8081ad053fd8072ca9eef94cea426b2e (diff) |
docs: add eslint
Diffstat (limited to 'docs/showcases/showcases.ts')
-rw-r--r-- | docs/showcases/showcases.ts | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts index f4899c2..053b628 100644 --- a/docs/showcases/showcases.ts +++ b/docs/showcases/showcases.ts @@ -1,24 +1,24 @@ type Showcase = { - label: string; - src: string; - url: string; - icon: string; // https://devicon.dev/ -}; + label: string + src: string + url: string + icon: string // https://devicon.dev/ +} -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/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>>; + { + 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>> |