25 lines
561 B
TypeScript
25 lines
561 B
TypeScript
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' },
|
||
]
|
||
}
|
||
]
|