mastodon-ggmbh.tsx 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import Image from "next/legacy/image"
  2. import Link from "next/link"
  3. import Head from "next/head";
  4. import Hero from "../../components/Hero"
  5. import Layout from "../../components/Layout"
  6. import heroImage from "../../public/illustrations/apps_hero_desktop.png"
  7. import deFlagIcon from "../../public/german_flag_icon_round.svg"
  8. import PolicyPage from "../../components/PolicyPage";
  9. const MastodonGGmbHDonorPolicy = () => (
  10. <Layout>
  11. <div dir="ltr" className="[unicode-bidi:plaintext]">
  12. <Hero desktopImage={heroImage} mobileImage={heroImage}>
  13. <h1 lang="en" className="h2 mb-4">Mastodon gGmbH Donor Policy</h1>
  14. <p lang="en" className="sh1">Last updated October 14, 2024</p>
  15. </Hero>
  16. </div>
  17. <PolicyPage>
  18. <section lang="en">
  19. <p className="mt-4 flex justify-end pb-2">
  20. <Link
  21. className="flex content-center gap-x-1"
  22. href="/donor-policy/de/mastodon-ggmbh"
  23. >
  24. <span className="hover:text-blurple-600">German translation</span>
  25. <Image
  26. src={deFlagIcon}
  27. className="aspect-square"
  28. width="20"
  29. height="20"
  30. alt="German translation"
  31. />
  32. </Link>
  33. </p>
  34. <p className="mt-4">
  35. Mastodon’s vision is to reimagine the social media landscape, one that is inclusive, diverse, user driven and
  36. supports dialogue. Our mission is to replace centralised platforms with robust social networking software that
  37. is inherently decentralised, open source and fully interoperable, with a commitment to privacy.
  38. </p>
  39. <p className="mt-4">
  40. This work is made possible, in part, by donations made by individuals and organisations from around
  41. the world. Through this policy, Mastodon defines the basic guidelines governing acceptance and acknowledgment
  42. of gifts and grants to further its mission.
  43. </p>
  44. <p className="mt-4">
  45. Any funding towards Mastodon gGmbH must be consistent with the organisation’s stated mission and purposes which
  46. prioritises its independence.
  47. </p>
  48. <p className="mt-4">
  49. To ensure this, below is an outline of the criteria to reject any form of support that is counter to Mastodon’s
  50. values and would place our mission, team, integrity and movement at large at risk:
  51. </p>
  52. <ul className="mt-4 list-disc ml-8">
  53. <li className="mt-2">Arms and weapons manufacturers and military contractors</li>
  54. <li className="mt-2">Any entities engaging in criminal activities and human rights violations</li>
  55. <li className="mt-2">Any entity that puts the organisation’s team, independence and communities at risk</li>
  56. <li className="mt-2">
  57. An entity that puts the organisation’s brand at risk, including but not exclusively, such as adult websites,
  58. affiliate and review websites, online betting and gambling, SEO services, social media buying and other
  59. </li>
  60. <li className="mt-2">Any other statements or actions that causes the organisation to question the advisability of accepting a contribution</li>
  61. </ul>
  62. <p className="mt-4">
  63. Mastodon gGmbH takes compliance and origin of funding sources very seriously. Funding is essential to adequately support
  64. its growth, but will not be allowed to compromise its values. Decisions are taken after examination of each funder and
  65. funding source. If a donor does not meet the above criteria, they will be refunded within 30 days of their donation via the
  66. original payment method where possible.
  67. </p>
  68. </section>
  69. <section lang="en" className="mt-8">
  70. <h4 className="h4 mb-6">Tax Consequences</h4>
  71. <p>
  72. Mastodon gGmbH is unable to offer tax advice to would-be donors. Donors who are concerned about tax-deductibility of
  73. donations should consult with their own tax advisers. The organisation was officially incorporated as a gGmbH (a German
  74. form of non-profit LLC) in 2021.
  75. </p>
  76. </section>
  77. <section lang="en" className="mt-8">
  78. <h4 className="h4 mb-6">Accepting Gifts-in-Kind</h4>
  79. <p>
  80. Gifts-in-kind may only be accepted by the Executive Director or by an officer delegated in writing by the Executive
  81. Director with the authority to accept such a gift.
  82. </p>
  83. </section>
  84. <Head>
  85. <title lang="en">Mastodon gGmbH Donor Policy - Mastodon</title>
  86. <meta
  87. property="og:title"
  88. content="Mastodon gGmbH Donor Policy"
  89. />
  90. </Head>
  91. </PolicyPage>
  92. </Layout>
  93. );
  94. export default MastodonGGmbHDonorPolicy;