Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/pages/privacy-policy.tsx
1006 views
1
import BasicPage from "../components/BasicPage"
2
import Head from "next/head"
3
import Hero from "../components/Hero"
4
import { withDefaultStaticProps } from "../utils/defaultStaticProps"
5
import Layout from "../components/Layout"
6
7
/** This page does not require translations */
8
const PrivacyPolicy = () => (
9
<Layout>
10
<div dir="ltr" className="[unicode-bidi:plaintext]">
11
<Hero>
12
<h1 className="h1 mb-4">Privacy Policy</h1>
13
<p className="sh1">Last updated June 28, 2021</p>
14
</Hero>
15
<BasicPage>
16
<div>
17
<p>
18
<strong>
19
This is the privacy policy for the joinmastodon.org website and
20
related services.
21
</strong>{" "}
22
It is not the privacy policy for Mastodon the social network.
23
Mastodon is made up of third-party servers that are not covered by
24
this privacy policy. You can view an individual Mastodon
25
server&apos;s privacy policy through its website.
26
</p>
27
28
<hr className="my-8 border-gray-3" />
29
30
<p>
31
<strong>
32
If you sign up to one of our newsletters by submitting a form on
33
joinmastodon.org or its subdomains
34
</strong>
35
, we collect your e-mail address as well as the time and date of the
36
sign up.
37
</p>
38
<p className="mt-4">
39
You give us consent to send you e-mails when you sign up for one of
40
our newsletters.
41
</p>
42
<p className="mt-4">
43
You can unsubscribe from any of our newsletters by using the
44
&quot;unsubscribe&quot; link provided in the footer of each e-mail.
45
When you unsubscribe, your e-mail address remains in our system by
46
default. You can optionally delete all of your data through that
47
link.
48
</p>
49
</div>
50
51
<Head>
52
<title>Privacy Policy - Mastodon</title>
53
<meta
54
property="og:title"
55
content="Privacy Policy for joinmastodon.org"
56
/>
57
</Head>
58
</BasicPage>
59
</div>
60
</Layout>
61
)
62
export const getStaticProps = withDefaultStaticProps()
63
export default PrivacyPolicy
64
65