board.ts 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. export type SocialMap = {
  2. mastodon?: string
  3. }
  4. export type BoardMember = {
  5. name: string
  6. position: string
  7. title?: string
  8. otherTitle?: string
  9. socials?: SocialMap
  10. slug?: string
  11. avatar?: string
  12. }
  13. export const BOARD_POSITION_DIRECTOR = "director";
  14. export const BOARD_POSITION_OBSERVER = "observer";
  15. export const board: BoardMember[] = [
  16. {
  17. name: "Karien Bezuidenhout",
  18. position: BOARD_POSITION_DIRECTOR,
  19. title: "Chair",
  20. socials: {
  21. mastodon: "https://mastodon.online/@karienbez"
  22. },
  23. slug: "karien-bezuidenhout",
  24. avatar: require("../public/avatars/karienbez.jpg"),
  25. },
  26. {
  27. name: "Amir Ghavi",
  28. position: BOARD_POSITION_DIRECTOR,
  29. title: "Secretary",
  30. socials: {
  31. mastodon: "https://mastodon.social/@aghavi"
  32. },
  33. slug: "amir-ghavi",
  34. avatar: require("../public/avatars/aghavi.jpg"),
  35. },
  36. {
  37. name: "Felix Hlatky",
  38. position: BOARD_POSITION_DIRECTOR,
  39. title: "Treasurer",
  40. otherTitle: "CFO",
  41. socials: {
  42. mastodon: "https://mastodon.social/@mellifluousbox"
  43. },
  44. slug: "felix-hlatky",
  45. avatar: require("../public/avatars/mellifluousbox.jpg"),
  46. },
  47. {
  48. name: "Esra’a Al Shafei",
  49. position: BOARD_POSITION_DIRECTOR,
  50. socials: {
  51. mastodon: "https://mastodon.social/@alshafei"
  52. },
  53. slug: "esraa-al-shafei",
  54. avatar: require("../public/avatars/alshafei.png"),
  55. },
  56. {
  57. name: "Biz Stone",
  58. position: BOARD_POSITION_DIRECTOR,
  59. socials: {
  60. mastodon: "https://me.dm/@biz"
  61. },
  62. slug: "biz-stone",
  63. avatar: require("../public/avatars/biz.jpg"),
  64. },
  65. {
  66. name: "Eugen Rochko",
  67. position: BOARD_POSITION_OBSERVER,
  68. socials: {
  69. mastodon: "https://mastodon.social/@Gargron"
  70. },
  71. },
  72. {
  73. name: "Renaud Chaput",
  74. position: BOARD_POSITION_OBSERVER,
  75. socials: {
  76. mastodon: "https://oisaur.com/@renchap"
  77. },
  78. }
  79. ]
  80. export default board