Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/data/team.ts
1006 views
1
export type SocialMap = {
2
mastodon?: string
3
}
4
5
export type TeamMember = {
6
image?: string
7
name: string
8
position: string
9
socials?: SocialMap
10
}
11
12
const team: TeamMember[] = [
13
{
14
name: "Amelia Rochko",
15
position: "Customer Service",
16
socials: {
17
mastodon: "https://mastodon.social/@Ameboid",
18
},
19
},
20
21
{
22
name: "Andy Piper",
23
position: "Head of Communications",
24
socials: {
25
mastodon: "https://macaw.social/@andypiper",
26
},
27
},
28
29
{
30
name: "Claire",
31
position: "Engineering (web)",
32
socials: {
33
mastodon: "https://social.sitedethib.com/@Claire",
34
},
35
},
36
37
{
38
name: "David Roetzel",
39
position: "Engineering (web)",
40
socials: {
41
mastodon: "https://upp2.com/@dave",
42
},
43
},
44
45
{
46
name: "Dion Dajka",
47
position: "Engineering (web)",
48
socials: {
49
mastodon: "https://indieweb.social/@diondiondion",
50
},
51
},
52
53
{
54
name: "Dopatwo",
55
position: "Illustrations",
56
socials: {
57
mastodon: "https://mastodon.social/@dopatwo",
58
},
59
},
60
61
{
62
name: "Echo",
63
position: "Engineering (web)",
64
socials: {
65
mastodon: "https://ishella.gay/@echo",
66
},
67
},
68
69
{
70
name: "Eugen Rochko",
71
position: "Executive Strategy & Product Advisor",
72
socials: {
73
mastodon: "https://mastodon.social/@Gargron",
74
},
75
},
76
77
{
78
name: "Felix Hlatky",
79
position: "Executive Director",
80
socials: {
81
mastodon: "https://mastodon.social/@mellifluousbox",
82
},
83
},
84
85
{
86
name: "Gregory Klyushnikov",
87
position: "Engineering (Android)",
88
socials: {
89
mastodon: "https://mastodon.social/@grishka",
90
},
91
},
92
93
{
94
name: "Hannah Aubry",
95
position: "Community Director",
96
socials: {
97
mastodon: "https://hachyderm.io/@haubles",
98
},
99
},
100
101
{
102
name: "Imani Joy",
103
position: "Product Designer",
104
socials: {
105
mastodon: "https://mastodon.social/@imanijoy",
106
},
107
},
108
109
{
110
name: "Philip Schröpel",
111
position: "Chief of Staff",
112
socials: {
113
mastodon: "https://mastodon.social/@philipkristians",
114
},
115
},
116
117
{
118
name: "Renaud Chaput",
119
position: "Technical Director",
120
socials: {
121
mastodon: "https://oisaur.com/@renchap",
122
},
123
},
124
125
{
126
name: "Scott Jenson",
127
position: "Product Strategy Adviser",
128
socials: {
129
mastodon: "https://social.coop/@scottjenson",
130
},
131
},
132
133
{
134
name: "Shannon Hughes",
135
position: "Engineering (iOS)",
136
socials: {
137
mastodon: "https://mastodon.social/@whattherestimefor",
138
},
139
},
140
141
{
142
name: "Timothy Campbell",
143
position: "DevOps",
144
socials: {
145
mastodon: "https://mastodon.social/@timetinytim",
146
},
147
},
148
149
{
150
name: "Zora Steiner",
151
position: "Operations",
152
socials: {
153
mastodon: "https://mastodon.social/@zoraxzora",
154
},
155
},
156
]
157
158
export default team
159
160