team.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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",
  35. socials: {
  36. mastodon: "https://social.sitedethib.com/@Claire",
  37. },
  38. },
  39. {
  40. name: "Nathan Mattes",
  41. position: "Engineering",
  42. socials: {
  43. mastodon: "https://chaos.social/@zeitschlag",
  44. },
  45. },
  46. {
  47. name: "Marcus Kida",
  48. position: "Engineering",
  49. socials: {
  50. mastodon: "https://bearologics.social/@marcus",
  51. },
  52. },
  53. {
  54. name: "Gregory Klyushnikov",
  55. position: "Engineering",
  56. socials: {
  57. mastodon: "https://mastodon.social/@grishka",
  58. },
  59. },
  60. {
  61. name: "Timothy Campbell",
  62. position: "DevOps",
  63. },
  64. {
  65. name: "Andy Piper",
  66. position: "DevRel",
  67. socials: {
  68. mastodon: "https://macaw.social/@andypiper",
  69. },
  70. },
  71. {
  72. name: "Amelia Rochko",
  73. position: "Customer Service",
  74. },
  75. {
  76. name: "Dopatwo",
  77. position: "Illustrations",
  78. socials: {
  79. mastodon: "https://mastodon.social/@dopatwo",
  80. },
  81. },
  82. ]
  83. export default team