This commit is contained in:
2024-08-10 19:46:55 +08:00
commit 2233526534
798 changed files with 35282 additions and 0 deletions

24
members.ts Normal file
View File

@@ -0,0 +1,24 @@
type Member = {
avatar: string
name: string
title: string
links: {
icon: string
link: string
}[]
}[]
// 写了个走 CF 的代理,为了让头像加载快点儿
// 格式暂时为https://avatars.hdu-cs.wiki/ + github 用户名不是昵称不加png
// https://avatars.hdu-cs.wiki/camera-2018
export const members: Member = [
{
avatar: 'https://avatars.hdu-cs.wiki/camera-2018',
name: 'camera-2018',
title: 'Maintainer',
links: [
{ icon: 'github', link: 'https://github.com/camera-2018' },
]
}
]