This repository has been archived by the owner on May 3, 2023. It is now read-only.
forked from catnose99/team-blog-hub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
members.ts
69 lines (67 loc) · 2.11 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
import { Member } from "@src/types";
export const members: Member[] = [
{
name: "Yuki Matsukura",
role: "CTO",
bio:
"Minedia, Inc. CTO。草生やしたいです。",
avatarSrc: "https://gravatar.com/avatar/5aae2aeace0b0ec7b82619f68b6d905f?s=400&d=robohash&r=x",
sources: [
"https://zenn.dev/matsubokkuri/feed",
"https://matsu.teraren.com/blog/feed/",
"https://qiita.com/matsubo/feed",
],
includeUrlRegex: "zenn.dev|teraren.com|qiita.com",
twitterUsername: "matsubokkuri",
githubUsername: "matsubo",
websiteUrl: "https://matsu.teraren.com/blog",
},
{
name: "Hajime Takeda",
role: "Data Scientist",
bio:
"駆け出しデータサイエンティスト。コーヒーが好きです。",
avatarSrc: "https://avatars1.githubusercontent.com/u/8223210?s=400&u=bd4b2b1ff493f380a93eb11366db3c58a025b047&v=4",
sources: [
"https://qiita.com/takechanman1228/feed",
],
githubUsername: "takechanman1228",
},
{
name: "Hiroya Suzuki",
role: "CEO",
bio:
"4649",
avatarSrc: "https://avatars.dicebear.com/v2/male/d6c558853d3a571260c7efc92a5947f6.svg",
sources: [
"https://qiita.com/piroya/feed",
],
includeUrlRegex: "zenn.dev|teraren.com|qiita.com",
githubUsername: "piroya"
},
{
name: "Yuma Ota",
role: "University Student",
bio:
"インターン中の大学生エンジニアです",
avatarSrc: "https://avatars.githubusercontent.com/Yum-git",
sources: [
"https://yzk-yzk-yzk.hatenablog.com/rss",
"https://qiita.com/yuma_1999_/feed/",
],
githubUsername: "Yum-git",
twitterUsername: "yuma_1999_",
},
{
name: "Takahiro Ishiwata",
role: "Marketing & Operation Manager",
bio:
"BtoB、BtoCマーケターです。マーケター視点でちょっと技術寄りの話をします。",
avatarSrc: "https://gravatar.com/avatar/38be4545da8da87195bb6b89cf82e978?s=400&d=robohash&r=x",
sources: [
"https://note.com/takastone/m/m6a150c695fc1/rss",
],
githubUsername: "takahiro_ishi",
twitterUsername: "takahirostone",
}
];