testimonials.ts 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. export type Testimonial = {
  2. /** User's preferred image */
  3. avatar: string
  4. /** User's preferred name */
  5. name: string
  6. /** User's Mastodon username */
  7. username: string
  8. /** Tetimonial quote. Omit wrapping quotes and ending attribution */
  9. text: string
  10. /** Absolute link to profile */
  11. profile_url: string
  12. }
  13. const testimonials: Testimonial[] = [
  14. {
  15. text: "I've made so many friends on Mastodon because I can actually talk to people instead of getting buried by algorithms that reward meaningless numbers over actual interaction.",
  16. name: "infinite love ⴳ",
  17. username: "trwnh@mastodon.social",
  18. avatar: "/testimonials/avatar_trwnh.png",
  19. profile_url: "https://mastodon.social/@trwnh",
  20. },
  21. {
  22. text: "Mastodon does an amazing job at giving communities the autonomy necessary to thrive by giving them the keys to federate and moderate their own servers. But don't let that alone overshadow the fact that it simply does features that the major social networks try to do (e.g. image captioning, content warnings) astoundingly better.",
  23. name: "Jenn Schiffer",
  24. username: "jenn@pixel.kitchen",
  25. avatar: "/testimonials/avatar_jennschiffer.jpeg",
  26. profile_url: "https://pixel.kitchen/@jenn",
  27. },
  28. {
  29. text: "Mastodon has changed my opinion of social media, it's a refreshing take on microblogging with a focus on privacy and safety.",
  30. name: "dansup",
  31. username: "dansup@mastodon.social",
  32. avatar: "/testimonials/avatar_dansup.jpg",
  33. profile_url: "https://mastodon.social/@dansup",
  34. },
  35. {
  36. text: "Mastodon is a privacy-friendly way to communicate with people which are interested in my work and the work of my authority. social.bund.de gives us the opportunity to incubate Mastodon accounts even for other federal authorities.",
  37. name: "Ulrich Kelber",
  38. username: "ulrichkelber@bonn.social",
  39. avatar: "/testimonials/avatar_ulrichkelber.png",
  40. profile_url: "https://bonn.social/@ulrichkelber",
  41. },
  42. {
  43. text: "Mastodon allowed us to create a non-profit, abuse-free social network based on open web standards and principles, all the while allowing our moderators and members to reinvigorate the early web values of community, camaraderie and respect using modern, accessible technologies.",
  44. name: "Jaz",
  45. username: "jaz@toot.wales",
  46. avatar: "/testimonials/avatar_jaz.jpeg",
  47. profile_url: "https://toot.wales/@jaz",
  48. },
  49. {
  50. text: "Mastodon is a well-moderated fully-functional microblogging service with some great features!",
  51. name: "해파리",
  52. username: "jarm@qdon.space",
  53. avatar: "/testimonials/avatar_jarm.jpeg",
  54. profile_url: "https://qdon.space/@jarm",
  55. },
  56. {
  57. text: "It's social media with moderation that actually works.",
  58. name: "voronoi potato",
  59. username: "Vopo@mastodon.social",
  60. avatar: "/testimonials/avatar_vopo.jpg",
  61. profile_url: "https://mastodon.social/@Vopo",
  62. },
  63. {
  64. text: "I could have joined an existing community, but I decided to self-host Mastodon.My posts to the world are replicated from my own servers and can be traced back to their originals. Since I own it, the platform will not be terminated or removed at the platform's discretion, and I can provide a long and stable service. I finally have this. Yay!",
  65. name: "のえる",
  66. username: "noellabo@fedibird.com",
  67. avatar: "/testimonials/avatar_noellabo.png",
  68. profile_url: "https://fedibird.com/@noellabo",
  69. },
  70. {
  71. text: "It's good software",
  72. name: "halcy",
  73. username: "halcy@icosahedron.website",
  74. avatar: "/testimonials/avatar_halcy.jpg",
  75. profile_url: "https://icosahedron.website/@halcy",
  76. },
  77. {
  78. text: "Great community, friendly atmosphere, and free software! What else would you possibly need?",
  79. name: "autumncheney",
  80. username: "AutumnCheney@mastodon.social",
  81. avatar: "/testimonials/avatar_autumncheney.jpg",
  82. profile_url: "https://mastodon.social/@AutumnCheney",
  83. },
  84. {
  85. text: "I wanted to have a federated social network since 2013 that looked and felt great and where I can connect to like-minded people. Mastodon just gave me the last puzzle piece and I absolutely love it! Probably spend more than five hours a day on my own little space with a friendly community that truly cares.",
  86. name: "Leonie",
  87. username: "koyu@kopimi.space",
  88. avatar: "/testimonials/avatar_koyu.png",
  89. profile_url: "https://kopimi.space/@koyu",
  90. },
  91. {
  92. text: "I'm personally addicted to Mastodon, for me it's like if Facebook or Twitter had a friendly version— where I can discuss things with people around the world about every single thing they love. If there's a subreddit for everything, of course there's also a Mastodon community for everything: I've got one profile for sharing art, another one for casual conversation and another one for politics.",
  93. name: "guedes",
  94. username: "guedes@mastodon.social",
  95. avatar: "/testimonials/avatar_guedes.jpg",
  96. profile_url: "https://mastodon.social/@guedes",
  97. },
  98. ]
  99. export default testimonials