Path: blob/main/pages/android/safety-standards.tsx
1006 views
import BasicPage from "../../components/BasicPage"1import Head from "next/head"2import Hero from "../../components/Hero"3import heroImage from "../../public/illustrations/apps_hero_desktop.png"4import { withDefaultStaticProps } from "../../utils/defaultStaticProps"5import Layout from "../../components/Layout"67/** This page does not require translations */8const SafetyStandards = () => (9<Layout>10<div dir="ltr" className="[unicode-bidi:plaintext]">11<Hero desktopImage={heroImage} mobileImage={heroImage}>12<h1 className="h3 mb-8 pt-16">Mastodon Safety Standards</h1>13<p className="sh1">For Mastodon for Android</p>14</Hero>15<BasicPage>16<div>17<h3 className="h5 mb-6">Posting or linking to CSAE</h3>18<div className="pl-3 border-l-4 border-blurple-600 b1 mb-4">19<blockquote20className="italic mb-4"21cite="https://support.google.com/googleplay/android-developer/answer/14747720#zippy=%2Chow-do-you-define-csae"22>23<p>24CSAE refers to child sexual abuse and exploitation, including25content or behavior that sexually exploits, abuses, or endangers26children. This includes, for example, grooming a child for27sexual exploitation, sextorting a child, trafficking of a child28for sex, or otherwise sexually exploiting a child.29</p>30</blockquote>31<p className="text-gray-1">32—{" "}33<a34className="hover:text-blurple-500"35href="https://support.google.com/googleplay/android-developer/answer/14747720#zippy=%2Chow-do-you-define-csae"36>37Google Child Safety Standards Policy38</a>39</p>40</div>41<p className="b1 mb-6">42The "Mastodon" app for Android ("the43application") allows you to connect to the Mastodon server44where your account is hosted ("the server") and create new45posts.{" "}46<strong>47Using the application to post or link to CSAE is strictly48prohibited.49</strong>50</p>51<h3 className="h5 mb-6">52Reporting accounts posting or linking to CSAE53</h3>54<p className="b1 mb-6">55If you see an account posting CSAE you can report it to your56server’s moderators for further action. The option to report an57account is available on the dropdown menu next to a post as well as58the individual profile.59</p>60<h3 className="h5 mb-6">Additional reporting</h3>61<p className="b1 mb-6">62You may also want to report to the relevant organizations in your63jurisdiction. Google maintains{" "}64<a65href="https://support.google.com/websearch/answer/148666"66className="font-semibold hover:text-blurple-500"67>68a list of organisations to report CSAE organised by country69</a>70. If your country is not listed there it may be listed at{" "}71<a72href="https://inhope.org/EN#hotlineReferral"73className="font-semibold hover:text-blurple-500"74>75INHOPE76</a>77.78</p>79<h3 className="h5 mb-6">Contact</h3>80<p className="b1 mb-4">81If you have any questions about this CSAE policy please contact{" "}82<a83href="mailto:[email protected]"84className="font-semibold hover:text-blurple-500"85>86[email protected]87</a>88.89</p>90</div>9192<Head>93<title>Safety Standards - Mastodon for Android</title>94<meta95property="og:title"96content="Mastodon for Android Safety Standards"97/>98</Head>99</BasicPage>100</div>101</Layout>102)103104export const getStaticProps = withDefaultStaticProps()105106export default SafetyStandards107108109