summaryrefslogtreecommitdiff
path: root/docs/showcases/showcases.ts
diff options
context:
space:
mode:
Diffstat (limited to 'docs/showcases/showcases.ts')
-rw-r--r--docs/showcases/showcases.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts
new file mode 100644
index 0000000..fa0a7bb
--- /dev/null
+++ b/docs/showcases/showcases.ts
@@ -0,0 +1,15 @@
+type Showcase = {
+ author: string
+ src: string
+ url: string
+}
+
+type Grid<T> = T
+ | [T, T]
+ | [T, T, T]
+ | [T, T, T, T]
+
+export default [
+ { author: "Aylur", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" },
+ // add more showcases here
+] satisfies Array<Grid<Showcase>>