129 lines
3.0 KiB
TypeScript
129 lines
3.0 KiB
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' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/HanWu311',
|
||
name: 'ZZM',
|
||
title: 'Maintainer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/HanWu311' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/aFlyBird0',
|
||
name: '爱飞的鸟',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/aFlyBird0' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/MarleneJiang',
|
||
name: 'Marlene',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/MarleneJiang' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/creamm-kk',
|
||
name: '可可',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/creamm-kk' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/renhaofan',
|
||
name: '任浩帆',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/renhaofan' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/ZhouXiinlei',
|
||
name: 'Xinlei_Zhou',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/ZhouXiinlei' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/46135621',
|
||
name: '46135621',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/46135621' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/buwyi',
|
||
name: 'buwyi',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/buwyi' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/E1PsyCongroo',
|
||
name: 'E1PsyCongroo',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/E1PsyCongroo' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/w31r4',
|
||
name: 'w31r4',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/w31r4' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/axiomofchoice-hjt',
|
||
name: 'Axiomofchoice',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/axiomofchoice-hjt' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/ek1ng',
|
||
name: 'ek1ng',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/ek1ng' },
|
||
]
|
||
},
|
||
{
|
||
avatar: 'https://avatars.hdu-cs.wiki/Plumbiu',
|
||
name: 'Guo Xingjun',
|
||
title: 'Contributer',
|
||
links: [
|
||
{ icon: 'github', link: 'https://github.com/Plumbiu' },
|
||
]
|
||
},
|
||
]
|