Added the privacy policy page

This commit is contained in:
Mathias Wagner 2022-09-30 22:25:05 +02:00
parent ba6e949198
commit feb9fe9939

View File

@ -0,0 +1,31 @@
import '../styles.sass';
const PrivacyPolicy = () => (
<div className="text-wrapper">
<h2>Privacy Policy</h2>
<h3>Sheepstar Bot</h3>
<p>Sheepstar is a multifunctional "Discord Bot" to ehance the experience on your Discord server.</p>
<h3>1. What we collect</h3>
<p><b>Message Data</b> - Message ID, Content, Date <br/>
Usage: Global Chat Function, Giveaway Function, Moderation Function, Poll Function, Custom Bot Settings</p>
<p><b>Server Data</b> - Guild ID, Language, Channel IDs <br/>
Usage: Global Chat Function, Giveaway Function, Moderation Function, Poll Function, Custom Bot Settings</p>
<p><b>User Data</b> - Client ID <br/>
Usage: Global Chat Function, Moderation Function</p>
<h3>2. How we store your data</h3>
<p>All the above data is securely stored in a secured database on our server. We collect this information only
from users and servers that use our bot. We collect this information only from users and servers that use
our bot. Only our team can access this data.</p>
<h3>3. Data removal</h3>
<p>If you want your data removed, you can open a ticket in our Discord Support Server (Join <a
href="https://support.sheepstar.xyz">here</a>) or by writing a email to support [at] sheepstar.xyz</p>
</div>
);
export default PrivacyPolicy;