Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/data/board.ts
1006 views
1
export type SocialMap = {
2
mastodon?: string
3
}
4
5
export type BoardMember = {
6
name: string
7
position: string
8
title?: string
9
otherTitle?: string
10
socials?: SocialMap
11
slug?: string
12
avatar?: string
13
}
14
15
export const BOARD_POSITION_DIRECTOR = "director"
16
export const BOARD_POSITION_OBSERVER = "observer"
17
18
export const board: BoardMember[] = [
19
{
20
name: "Hannah Aubry",
21
position: BOARD_POSITION_DIRECTOR,
22
otherTitle: "Community Director",
23
socials: {
24
mastodon: "https://hachyderm.io/@haubles",
25
},
26
slug: "hannah-aubry",
27
avatar: require("../public/avatars/hannah.jpg"),
28
},
29
{
30
name: "Karien Bezuidenhout",
31
position: BOARD_POSITION_DIRECTOR,
32
title: "Chair",
33
socials: {
34
mastodon: "https://mastodon.online/@karienbez",
35
},
36
slug: "karien-bezuidenhout",
37
avatar: require("../public/avatars/karienbez.jpg"),
38
},
39
{
40
name: "Felix Hlatky",
41
position: BOARD_POSITION_DIRECTOR,
42
title: "Treasurer",
43
otherTitle: "Executive Director",
44
socials: {
45
mastodon: "https://mastodon.social/@mellifluousbox",
46
},
47
slug: "felix-hlatky",
48
avatar: require("../public/avatars/mellifluousbox.jpg"),
49
},
50
{
51
name: "Esra’a Al Shafei",
52
position: BOARD_POSITION_DIRECTOR,
53
socials: {
54
mastodon: "https://mastodon.social/@alshafei",
55
},
56
slug: "esraa-al-shafei",
57
avatar: require("../public/avatars/alshafei.png"),
58
},
59
{
60
name: "Biz Stone",
61
position: BOARD_POSITION_DIRECTOR,
62
socials: {
63
mastodon: "https://me.dm/@biz",
64
},
65
slug: "biz-stone",
66
avatar: require("../public/avatars/biz.jpg"),
67
},
68
{
69
name: "Eugen Rochko",
70
position: BOARD_POSITION_OBSERVER,
71
otherTitle: "Founder & Strategic Advisor",
72
socials: {
73
mastodon: "https://mastodon.social/@Gargron",
74
},
75
},
76
{
77
name: "Renaud Chaput",
78
position: BOARD_POSITION_OBSERVER,
79
otherTitle: "Technical Director",
80
socials: {
81
mastodon: "https://oisaur.com/@renchap",
82
},
83
},
84
]
85
86
export default board
87
88