1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/*
Alee Productions Website: Website for Alee Productions
Copyright (C) 2020 Alee
DO NOT MODIFY THE TOS WITHOUT ALEE'S PERMISSION.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import Layout from "../components/Layout";
const TOS = () => (
<Layout>
<div>
<div className="container">
<div id="top"/>
<h1 className="text-center display-5 mt-3">Alee Productions Terms of Service</h1>
<p>These terms of service are set in place to ensure you have a great time being part of our community/services.</p>
<div id="community-guidelines">
<h1>Community Guidelines</h1>
<p>These are the community guidelines that must be followed in every community/service we own.</p>
<ul>
<li>Use common sense.</li>
<li>No spamming. Any spam will result in an official warning.</li>
<li>No advertisements/giveaways of any kind, unless for a specific purpose.</li>
<li>Respect others.</li>
<li>No backseat moderating (enforcing the rules to other users).</li>
<li>Refrain from asking for staff.</li>
<li>Cursing is allowed within reason. However, racial slurs and/or using them to hurt others will result in severe punishment.</li>
<li>Accusations are not tolerated. Spreading any accusations will result in an investigation from all staff, which may lead to temporary or permanent termination from our services.</li>
<li>Do not argue with or threaten the staff.</li>
<li>Absolutely no blackmailing, attacking, cyberbullying, or threatening of any members.</li>
<li>No NSFW content. This include links and pictures.</li>
<li>Organized raids are not allowed.</li>
<li>Only one account per person at a time.</li>
<li>Any malicious content (i.e. viruses, malware, adware, etc) is strictly forbidden.</li>
<li>Any back talk (i.e, talking negatively on a member from our community/services) is not allowed. This includes exclusive places in the community, not DMs.</li>
<li>If you encounter someone in this community exchanging or requesting illegal content to you, contact staff immediately and the team will handle it.</li>
</ul>
<p>Action will be taken against any users consistently breaking these guidelines.</p>
</div>
<div id="alp-policies">
<h1>Alee Productions Policies</h1>
<div id="coppa">
<h2>COPPA Policy</h2>
<p>In order to comply with the Children’s Online Privacy Protection Act (COPPA), you must be at least 13 years of age to use these services. You will be banned if found to be under 13 years of age.</p>
</div>
<div id="delta">
<h2>Delta Policy</h2>
<p>These rules applies when using our Minecraft servers</p>
<ul>
<li>Usage of hacked clients (including - but not limited to - Wurst, Wolfram, Sigma, etc.) is strictly prohibited.*</li>
<li>Griefing is not allowed.*</li>
<li>Combating is not allowed. Unless the target player wants to combat the other player with permission.*</li>
<li>Respect everyone.</li>
</ul>
<p>If you are found to violate these rules, you may receive a temporary or permanent ban. If you have been banned, and are found playing on an alt, you may be subject to an IP ban.</p>
<p>* If certain servers allows these actions, then these policies will not apply.</p>
</div>
</div>
<div id="discord-policies">
<h1>Discord Policies</h1>
<p>If you are part of our discord server(s), we have set policies that you must follow.</p>
<div id="logging">
<h2>Logging</h2>
<p>The following will be logged and stored by our bots:</p>
<ul>
<li>Deleted Messages</li>
<li>Edited Messages</li>
<li>Your user ID</li>
<li>Members joining and leaving</li>
</ul>
<p>If you do not agree to the logging of these items, and wish to opt out, you must leave the server.</p>
</div>
<div id="nickname">
<h2>Nickname</h2>
<p>We enforce this nickname policy to keep a clean, friendly community.</p>
<p>This system is set in place so that the community is a nice place to be for everyone. When changing your nickname, it must comply with the following guidelines:</p>
<ul>
<li>No offensive words</li>
<li>No symbols</li>
<li>Nicknames must not be attention-grabbing (i.e. getting to the top of the list by using a symbol)</li>
</ul>
<p>Usernames or nickname requests found to be in violation of these guidelines will face repercussions.</p>
</div>
<p>We recommend you to follow Discord's <a href="https://discord.com/terms" className="green-text">Terms of Service</a> and <a href="https://discord.com/guidelines" className="green-text">Community Guidelines</a></p>
</div>
<p>Last updated: June 26th, 2021</p>
<a href="#top" className="green-text">Back to top</a>
</div>
</div>
</Layout>
);
export default TOS;
|