summaryrefslogtreecommitdiff
path: root/docs/src/content/showcases.ts
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-09-01 15:23:08 +0200
committerAylur <[email protected]>2024-09-01 15:23:08 +0200
commit6c4753b5e14a50c617e326d97d270ff51156a183 (patch)
tree560ffd167d6b4f1da04e545990666c447c15e35b /docs/src/content/showcases.ts
parent27c25b0e6070f291b33107a0bbfe5086b6d3f119 (diff)
initial docs
Diffstat (limited to 'docs/src/content/showcases.ts')
-rw-r--r--docs/src/content/showcases.ts13
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" },
+]