summaryrefslogtreecommitdiff
path: root/docs/showcases/showcases.ts
blob: 2aea04ae7cd9fb58f066cd5b2376f4ec9df64699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
type Showcase = {
    image: string
    url: string
    icon?: string // https://devicon.dev/
    title?: string
    description?: string
    author: string
}

// TODO: support more layouts
type Grid<T> = T | [T, T]

export default [
    {
        image: "/astal/showcase/aylur.png",
        url: "https://github.com/Aylur/dotfiles",
        icon: "devicon-typescript-plain",
        description: "Placeholder (this is an ags v1 screenshot)",
        author: "Aylur",
    },
    {
        image: "/astal/showcase/tokyob0t-super-duper-hiper-mega-ultra-contribution.webp",
        url: "https://github.com/tokyob0t/dotfiles",
        icon: "devicon-lua-plain",
        title: "Tokyob0t's Desktop",
        description: "Abandonad toda esperanza, vosotros que entráis aquí.",
        author: "tokyob0t",
    },
    {
        image: "/astal/showcase/kotontrion-kompass.webp",
        url: "https://github.com/kotontrion/kompass",
        icon: "devicon-vala-plain",
        title: "kompass",
        author: "kotontrion",
    },

    // add more showcases here~
] satisfies Array<Grid<Showcase>>