summaryrefslogtreecommitdiff
path: root/docs/src/content/showcases.ts
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/content/showcases.ts')
-rw-r--r--docs/src/content/showcases.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/src/content/showcases.ts b/docs/src/content/showcases.ts
deleted file mode 100644
index 0082c93..0000000
--- a/docs/src/content/showcases.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-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" },
-]