Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/pages/ios/privacy.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 Privacy = () => (
9
<Layout>
10
<div dir="ltr" className="[unicode-bidi:plaintext]">
11
<Hero>
12
<h1 className="h1 mb-4">Mastodon for iOS Privacy Policy</h1>
13
<p className="sh1">Last updated June 20, 2021</p>
14
</Hero>
15
<BasicPage>
16
<div>
17
<p>
18
The Mastodon for iOS app does not collect or process any personal
19
information from its users. The app is used to connect to
20
third-party Mastodon servers that may or may not collect personal
21
information and are not covered by this privacy policy. Each
22
third-party Mastodon server comes equipped with its own privacy
23
policy that can be viewed through the app or through that
24
server&apos;s website.
25
</p>
26
</div>
27
28
<Head>
29
<title>Privacy Policy - Mastodon for iOS</title>
30
<meta
31
property="og:title"
32
content="Privacy Policy for Mastodon for iOS"
33
/>
34
</Head>
35
</BasicPage>
36
</div>
37
</Layout>
38
)
39
export const getStaticProps = withDefaultStaticProps()
40
export default Privacy
41
42