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.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts
index fa0a7bb..138ae7f 100644
--- a/docs/showcases/showcases.ts
+++ b/docs/showcases/showcases.ts
@@ -1,5 +1,5 @@
type Showcase = {
- author: string
+ label: string
src: string
url: string
}
@@ -10,6 +10,6 @@ type Grid<T> = T
| [T, T, T, T]
export default [
- { author: "Aylur", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" },
+ { label: "Placeholder (this is an ags v1 screenshot)", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" },
// add more showcases here
] satisfies Array<Grid<Showcase>>