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] 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>