summaryrefslogtreecommitdiff
path: root/docs/showcases/showcases.ts
blob: 138ae7fd2bde295f61e9e80d86a49730d48b4de2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type Showcase = {
    label: string
    src: string
    url: string
}

type Grid<T> = T
    | [T, T]
    | [T, T, T]
    | [T, T, T, T]

export default [
    { 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>>