team.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. image: require("../public/team/eugen-rochko.jpg"),
  13. name: "Eugen Rochko",
  14. position: "Founder, CEO",
  15. socials: {
  16. mastodon: "https://mastodon.social/@Gargron",
  17. },
  18. },
  19. {
  20. name: "Felix Hlatky",
  21. position: "CFO",
  22. socials: {
  23. mastodon: "https://mastodon.social/@mellifluousbox",
  24. },
  25. },
  26. {
  27. image: require("../public/team/inga-driksne.jpg"),
  28. name: "Inga Driksne",
  29. position: "Operations/Talent",
  30. },
  31. {
  32. name: "Julie Inouye",
  33. position: "Communications",
  34. },
  35. {
  36. name: "Claire",
  37. position: "Engineering",
  38. socials: {
  39. mastodon: "https://social.sitedethib.com/@Claire",
  40. },
  41. },
  42. {
  43. name: "Nathan Mattes",
  44. position: "Engineering",
  45. socials: {
  46. mastodon: "https://chaos.social/@zeitschlag",
  47. },
  48. },
  49. {
  50. name: "Marcus Kida",
  51. position: "Engineering",
  52. socials: {
  53. mastodon: "https://bearologics.social/@marcus",
  54. },
  55. },
  56. {
  57. name: "Gregory Klyushnikov",
  58. position: "Engineering",
  59. socials: {
  60. mastodon: "https://mastodon.social/@grishka",
  61. },
  62. },
  63. {
  64. name: "Timothy Campbell",
  65. position: "DevOps",
  66. },
  67. {
  68. name: "Amelia Rochko",
  69. position: "Customer Service",
  70. },
  71. {
  72. name: "Dopatwo",
  73. position: "Illustrations",
  74. socials: {
  75. mastodon: "https://mastodon.social/@dopatwo",
  76. },
  77. },
  78. ]
  79. export default team