ceshi
This commit is contained in:
24
members.ts
Normal file
24
members.ts
Normal 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' },
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user