privacy-policy.tsx 2.2 KB

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