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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
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.webp",
url: "https://github.com/Aylur/dotfiles",
icon: "devicon-typescript-plain",
title: "Marble Shell",
author: "Aylur",
},
{
image: "/astal/showcase/tokyob0t.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",
},
{
image: "/astal/showcase/ezerinz.webp",
url: "https://github.com/ezerinz/epik-shell",
icon: "devicon-javascript-plain",
title: "Epik Shell",
author: "ezerinz",
},
{
image: "/astal/showcase/hyprpanel_showcase.webp",
url: "https://github.com/Jas-SinghFSU/hyprpanel",
icon: "devicon-javascript-plain",
title: "HyprPanel",
author: "Jas",
},
// add more showcases here~
] satisfies Array<Grid<Showcase>>
|