privacy.tsx 1.4 KB

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