diff options
Diffstat (limited to 'docs/src/content/showcases.ts')
-rw-r--r-- | docs/src/content/showcases.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/src/content/showcases.ts b/docs/src/content/showcases.ts new file mode 100644 index 0000000..0082c93 --- /dev/null +++ b/docs/src/content/showcases.ts @@ -0,0 +1,13 @@ +type Showcase = { + author: string + src: string + url: string +} + +type Grid<T> = + | [T, T] + | [T, T, T, T] + +export const showcases: Array<Showcase | Grid<Showcase>> = [ + { author: "Aylur", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" }, +] |