team.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. export type SocialMap = {
  2. mastodon?: string
  3. }
  4. export type TeamMember = {
  5. image?: string
  6. name: string
  7. position: string
  8. socials?: SocialMap
  9. }
  10. const team: TeamMember[] = [
  11. {
  12. name: "Eugen Rochko",
  13. position: "Founder, CEO",
  14. socials: {
  15. mastodon: "https://mastodon.social/@Gargron",
  16. },
  17. },
  18. {
  19. name: "Renaud Chaput",
  20. position: "CTO",
  21. socials: {
  22. mastodon: "https://oisaur.com/@renchap",
  23. },
  24. },
  25. {
  26. name: "Felix Hlatky",
  27. position: "CFO",
  28. socials: {
  29. mastodon: "https://mastodon.social/@mellifluousbox",
  30. },
  31. },
  32. {
  33. name: "Claire",
  34. position: "Engineering (web)",
  35. socials: {
  36. mastodon: "https://social.sitedethib.com/@Claire",
  37. },
  38. },
  39. {
  40. name: "David Roetzel",
  41. position: "Engineering (web)",
  42. socials: {
  43. mastodon: "https://upp2.com/@dave",
  44. },
  45. },
  46. {
  47. name: "Shannon Hughes",
  48. position: "Engineering (iOS)",
  49. socials: {
  50. mastodon: "https://mastodon.social/@whattherestimefor",
  51. },
  52. },
  53. {
  54. name: "Gregory Klyushnikov",
  55. position: "Engineering (Android)",
  56. socials: {
  57. mastodon: "https://mastodon.social/@grishka",
  58. },
  59. },
  60. {
  61. name: "Timothy Campbell",
  62. position: "DevOps",
  63. },
  64. {
  65. name: "Inga Driksne",
  66. position: "Operations",
  67. socials: {
  68. mastodon: "https://mastodon.social/@inganomads",
  69. },
  70. },
  71. {
  72. name: "Andy Piper",
  73. position: "DevRel",
  74. socials: {
  75. mastodon: "https://macaw.social/@andypiper",
  76. },
  77. },
  78. {
  79. name: "Amelia Rochko",
  80. position: "Customer Service",
  81. },
  82. {
  83. name: "Philip Schröpel",
  84. position: "Finance",
  85. socials: {
  86. mastodon: "https://mastodon.social/@philipkristians",
  87. },
  88. },
  89. {
  90. name: "Dopatwo",
  91. position: "Illustrations",
  92. socials: {
  93. mastodon: "https://mastodon.social/@dopatwo",
  94. },
  95. },
  96. ]
  97. export default team