mirror of
https://github.com/zoriya/astal.git
synced 2025-12-06 06:06:10 +00:00
16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
type Showcase = {
|
|
author: string
|
|
src: string
|
|
url: string
|
|
}
|
|
|
|
type Grid<T> = T
|
|
| [T, T]
|
|
| [T, T, T]
|
|
| [T, T, T, T]
|
|
|
|
export default [
|
|
{ author: "Aylur", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" },
|
|
// add more showcases here
|
|
] satisfies Array<Grid<Showcase>>
|