summaryrefslogtreecommitdiff
path: root/docs/src/content/showcases.ts
blob: 0082c936d9c2e526bb0be1fb7f9624d7e42775c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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" },
]