Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/pages/donor-policy/mastodon-inc.tsx
1006 views
1
import Hero from "../../components/Hero"
2
import Layout from "../../components/Layout"
3
import heroImage from "../../public/illustrations/apps_hero_desktop.png"
4
import PolicyPage from "../../components/PolicyPage"
5
import Head from "next/head"
6
7
const MastodonIncDonorPolicy = () => (
8
<Layout>
9
<div dir="ltr" className="[unicode-bidi:plaintext]">
10
<Hero desktopImage={heroImage} mobileImage={heroImage}>
11
<h1 lang="en-US" className="h2 mb-4">
12
Mastodon, Inc. Donor Policy
13
</h1>
14
<p lang="en-US" className="sh1">
15
Last updated October 14, 2024
16
</p>
17
</Hero>
18
</div>
19
20
<PolicyPage>
21
<section lang="en-US">
22
<p className="mt-4">
23
Mastodon, Inc’s vision is to reimagine the social media landscape, one
24
that is inclusive, diverse, user driven and supports dialogue. Our
25
mission is to replace centralised platforms with robust social
26
networking software that is inherently decentralised, open source and
27
fully interoperable, with a commitment to privacy.
28
</p>
29
<p className="mt-4">
30
This work is made possible, in part, by donations made by individuals
31
and organizations from around the world. Through this policy,
32
Mastodon, Inc. defines the basic guidelines governing acceptance and
33
acknowledgment of gifts and grants to further its mission.
34
</p>
35
<p className="mt-4">
36
Any funding towards Mastodon, Inc. must be consistent with the
37
organization’s stated mission and purposes which prioritizes its
38
independence.
39
</p>
40
<p className="mt-4">
41
To ensure this, below is an outline of the criteria to reject any form
42
of support that is counter to Mastodon’s values and would place our
43
mission, team, integrity and movement at large at risk:
44
</p>
45
<ul className="mt-4 list-disc ml-8">
46
<li className="mt-2">
47
Arms and weapons manufacturers and military contractors
48
</li>
49
<li className="mt-2">
50
Any entities engaging in criminal activities and human rights
51
violations
52
</li>
53
<li className="mt-2">
54
Any entity that puts the organization’s team, independence and
55
communities at risk
56
</li>
57
<li className="mt-2">
58
Any other statements or actions that causes the organization to
59
question the advisability of accepting a contribution
60
</li>
61
</ul>
62
<p className="mt-4">
63
Mastodon, Inc. takes compliance and origin of funding sources very
64
seriously. Funding is essential to adequately support its growth, but
65
will not be allowed to compromise its values. Decisions are taken
66
after thorough examination of each funder and funding source. Such
67
decisions may also be referred to the Board of Directors for further
68
exploration and a final decision. If a donor does not meet the above
69
criteria, they will be refunded within 30 days of their donation via
70
the original payment method where possible.
71
</p>
72
</section>
73
<section lang="en-US" className="mt-8">
74
<h4 className="h4 mb-6">Tax Consequences</h4>
75
<p>
76
Mastodon, Inc. is unable to offer tax advice to would-be donors.
77
Donors who are concerned about tax-deductibility of donations should
78
consult with their own tax advisers. The organization is a 501(c)(3)
79
tax-exempt organization operating under United States law as a
80
Delaware corporation.
81
</p>
82
</section>
83
<section lang="en-US" className="mt-8">
84
<h4 className="h4 mb-6">Accepting Gifts-in-Kind</h4>
85
<p>
86
Gifts-in-kind may only be accepted by the Executive Director or by an
87
officer delegated in writing by the Executive Director with the
88
authority to accept such a gift.
89
</p>
90
</section>
91
92
<Head>
93
<title lang="en-US">Mastodon, Inc. Donor Policy - Mastodon</title>
94
<meta property="og:title" content="Mastodon, Inc. Donor Policy" />
95
</Head>
96
</PolicyPage>
97
</Layout>
98
)
99
100
export default MastodonIncDonorPolicy
101
102