Skip to content

Commit 7c0a547

Browse files
authored
Add safety standards page for Google Play Store (#865)
1 parent 869ba48 commit 7c0a547

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

pages/android/safety-standards.tsx

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
import BasicPage from "../../components/BasicPage"
2+
import Head from "next/head"
3+
import Hero from "../../components/Hero"
4+
import heroImage from "../../public/illustrations/apps_hero_desktop.png"
5+
import { withDefaultStaticProps } from "../../utils/defaultStaticProps"
6+
import Layout from "../../components/Layout"
7+
8+
/** This page does not require translations */
9+
const SafetyStandards = () => (
10+
<Layout>
11+
<div dir="ltr" className="[unicode-bidi:plaintext]">
12+
<Hero desktopImage={heroImage} mobileImage={heroImage}>
13+
<h1 className="h3 mb-8 pt-16">Mastodon Safety Standards</h1>
14+
<p className="sh1">For Mastodon for Android</p>
15+
</Hero>
16+
<BasicPage>
17+
<div>
18+
<h3 className="h5 mb-6">Posting or linking to CSAE</h3>
19+
<div className="pl-3 border-l-4 border-blurple-600 b1 mb-4">
20+
<blockquote className="italic mb-4" cite="https://support.google.com/googleplay/android-developer/answer/14747720#zippy=%2Chow-do-you-define-csae">
21+
<p>CSAE refers to child sexual abuse and exploitation, including content or behavior that sexually exploits, abuses, or endangers children. This includes, for example, grooming a child for sexual exploitation, sextorting a child, trafficking of a child for sex, or otherwise sexually exploiting a child.</p>
22+
</blockquote>
23+
<p className="text-gray-1"><a className="hover:text-blurple-500" href="https://support.google.com/googleplay/android-developer/answer/14747720#zippy=%2Chow-do-you-define-csae">Google Child Safety Standards Policy</a></p>
24+
</div>
25+
<p className="b1 mb-6">The "Mastodon" app for Android ("the application") allows you to connect to the Mastodon server where your account is hosted ("the server") and create new posts. <strong>Using the application to post or link to CSAE is strictly prohibited.</strong></p>
26+
<h3 className="h5 mb-6">Reporting accounts posting or linking to CSAE</h3>
27+
<p className="b1 mb-6">If you see an account posting CSAE you can report it to your server’s moderators for further action. The option to report an account is available on the dropdown menu next to a post as well as the individual profile.</p>
28+
<h3 className="h5 mb-6">Additional reporting</h3>
29+
<p className="b1 mb-6">You may also want to report to the relevant organizations in your jurisdiction. Google maintains <a href="https://support.google.com/websearch/answer/148666" className="font-semibold hover:text-blurple-500">a list of organisations to report CSAE organised by country</a>. If your country is not listed there it may be listed at <a href="https://inhope.org/EN#hotlineReferral" className="font-semibold hover:text-blurple-500">INHOPE</a>.</p>
30+
<h3 className="h5 mb-6">Contact</h3>
31+
<p className="b1 mb-4">If you have any questions about this CSAE policy please contact <a href="mailto:[email protected]" className="font-semibold hover:text-blurple-500">[email protected]</a>.</p>
32+
</div>
33+
34+
<Head>
35+
<title>Safety Standards - Mastodon for Android</title>
36+
<meta
37+
property="og:title"
38+
content="Mastodon for Android Safety Standards"
39+
/>
40+
</Head>
41+
</BasicPage>
42+
</div>
43+
</Layout>
44+
)
45+
46+
export const getStaticProps = withDefaultStaticProps()
47+
48+
export default SafetyStandards

0 commit comments

Comments
 (0)