-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfriend.ts
46 lines (44 loc) · 1.02 KB
/
friend.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
export interface FriendProps {
id: string
link: string
avatar: string
bgColor: string
}
export const friends: FriendProps[] = [
{
id: '@FDKevin',
link: 'https://github.com/FDKevin0/',
avatar: 'https://avatars3.githubusercontent.com/u/25277753',
bgColor: '#473922',
},
{
id: '@Esonhugh',
link: 'https://eson.ninja/',
avatar: 'https://eson.ninja/img/reol.png',
bgColor: '#225BC6', // light blue
},
{
id: '@ek1ng',
link: 'https://ek1ng.com/',
avatar: 'https://ek1ng.com/img/avatar.jpg',
bgColor: '#70887D',
},
{
id: '@NX',
link: 'https://www.nickxu.top/',
avatar: 'https://www.nickxu.top/static/favicon.jpg',
bgColor: '#00FF00',
},
{
id: '@william',
link: 'https://github.com/william0620',
avatar: 'https://avatars3.githubusercontent.com/u/68418870',
bgColor: '#e6e6fa',
},
{
id: '@Bird',
link: 'https://github.com/aFlyBird0',
avatar: 'https://avatars.githubusercontent.com/u/36830265',
bgColor: '#66ccff',
},
]