This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
forked from catnose99/team-blog-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers.ts
118 lines (117 loc) · 2.92 KB
/
members.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import { Member } from '@src/types'
export const members: Member[] = [
{
id: 'kj',
name: '麻野耕司',
role: 'CEO',
bio: 'CEO',
avatarSrc: '/avatars/kj.jpg',
sources: ['https://note.com/kojiasano1103/rss'],
includeUrlRegex: '',
twitterUsername: 'asanokoji',
githubUsername: '',
websiteUrl: '',
},
{
id: 'mayah',
name: 'mayah',
role: 'CTO',
bio: 'CTO',
avatarSrc: '/avatars/mayah.jpg',
sources: ['https://mayah.jp/index.xml'],
includeUrlRegex: '',
twitterUsername: 'mayahjp',
githubUsername: 'mayah',
websiteUrl: 'https://mayah.jp',
},
{
id: 'yoshiko',
name: 'よしこ',
role: 'Frontend',
bio: 'Frontend Engineer',
avatarSrc: '/avatars/yoshiko.png',
sources: ['https://zenn.dev/yoshiko/feed', 'https://yoshiko.hatenablog.jp/feed'],
includeUrlRegex: '',
twitterUsername: 'yoshiko_pg',
githubUsername: 'yoshiko-pg',
websiteUrl: '',
},
{
id: 'zawakin',
name: 'zawakin',
role: 'Backend',
bio: 'Backend Engineer',
avatarSrc: '/avatars/zawakin.jpg',
sources: [
'https://www.zawawahoge.com/index.xml',
'https://zenn.dev/zawawahoge/feed',
'https://qiita.com/zawawahoge/feed',
],
includeUrlRegex: '',
twitterUsername: 'zawawahoge',
githubUsername: 'zawawahoge',
websiteUrl: 'https://www.zawawahoge.com',
},
{
id: 'yudoufu',
name: 'yudoufu',
role: 'Infra',
bio: 'Infra Engineer',
avatarSrc: '/avatars/yudoufu.png',
sources: ['https://yudoufu.hatenablog.jp/feed', 'https://zenn.dev/yudoufu/feed'],
includeUrlRegex: '',
twitterUsername: 'yudoufu',
githubUsername: 'yudoufu',
websiteUrl: '',
},
{
id: 'aoshi',
name: 'aoshi',
role: 'Frontend',
bio: 'Frontend Engineer',
avatarSrc: '/avatars/aoshi.png',
sources: ['https://note.com/deepblue_will/rss', 'https://zenn.dev/deepblue_will/feed'],
includeUrlRegex: '',
twitterUsername: 'deepblue_will',
githubUsername: 'deepblue-will',
websiteUrl: '',
},
{
id: 'sadakoa',
name: 'sadakoa',
role: 'Designer',
bio: 'Designer',
avatarSrc: '/avatars/sadakoa.jpg',
sources: ['https://note.com/sadako_a_/rss'],
includeUrlRegex: '',
twitterUsername: 'sadako_a_',
githubUsername: '',
websiteUrl: 'https://mamorukijima.com/',
},
{
id: 'nannichi',
name: '南日政俊',
role: 'BizDev',
bio: 'Business Development',
avatarSrc: '/avatars/nannichi.jpg',
sources: ['https://note.com/masatoshi_228/rss'],
includeUrlRegex: '',
twitterUsername: 'MTNN_228',
githubUsername: '',
websiteUrl: '',
},
{
id: 'yackrru',
name: 'yackrru',
role: 'Backend',
bio: 'Backend Engineer',
avatarSrc: '/avatars/yackrru.jpg',
sources: [
'https://qiita.com/yackrru/feed',
],
includeUrlRegex: '',
twitterUsername: 'yackrru',
githubUsername: 'yackrru',
websiteUrl: '',
},
]