summaryrefslogtreecommitdiff
path: root/docs/showcases/showcases.ts
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-09-03 20:32:41 +0200
committerAylur <[email protected]>2024-09-03 20:32:41 +0200
commit6f39857dc7bf59d84c89b311690e858ce0a4724e (patch)
tree4ce9a79816a82de4778e068eadcdfb32b991df17 /docs/showcases/showcases.ts
parentb8acc3897f5c48a5fc4ba73921c77cae2e91598c (diff)
docs: migrate to vitepress
vitepress feels a bit more polished and clean
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>>