apps/web/src/views/TermsOfService.vue (view raw)
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
<script lang="ts" setup>
const lastUpdated = new Date(1781213982679);
</script>
<template>
<div class="content">
<section>
<h1>Terms of Service</h1>
<p>
Last updated:
<time :datetime="lastUpdated.toISOString()">{{ lastUpdated.toLocaleDateString() }}</time>
</p>
<p>
These Terms of Service ("Terms") govern your use of our Discord bot (the "Bot") and its
associated website (the "Website"). The Bot and Website are operated by the Stealth
Developers community to provide support and ticket-handling services.
</p>
<p>
By using the Bot or accessing the Website, you agree to comply with and be bound by these
Terms. If you do not agree, please do not use these services.
</p>
</section>
<section>
<h2>1. Eligibility and Accounts</h2>
<p>
To use our Bot and Website, you must meet the minimum age requirements set by Discord (which
is 13 years of age in most jurisdictions) and Roblox.
</p>
<p>
You are responsible for maintaining the security of your Discord account. Any actions taken
through your account within our ticket system are considered your responsibility.
</p>
</section>
<section>
<h2>2. Acceptable Use and Conduct</h2>
<p>
Our ticket system is designed to handle legitimate support inquiries, player reports, and
community questions. When opening a ticket or interacting with the Bot or Website, you agree
not to:
</p>
<ul>
<li>Spam, flood, or abuse the ticket creation system.</li>
<li>Submit intentionally false, misleading, or malicious player reports.</li>
<li>Harass, abuse, threaten, or insult the community moderators or developers.</li>
<li>
Upload, send, or share illegal, harmful, offensive, or malicious content (including
viruses, malware, or phishing links).
</li>
<li>
Attempt to exploit, reverse-engineer, or bypass any security features of the Bot or
Website.
</li>
</ul>
</section>
<section>
<h2>3. Adherence to Platform Policies</h2>
<p>
Because our services operate in conjunction with external platforms, your use of the Bot and
Website must also strictly adhere to:
</p>
<ul>
<li>The Discord Terms of Service and Community Guidelines.</li>
<li>The Roblox Terms of Use and Community Standards.</li>
</ul>
<p>
Violations of these platform policies within our ticket system may be reported to the
respective platforms.
</p>
</section>
<section>
<h2>4. Moderation and Service Access</h2>
<p>
We reserve the right, at our discretion, to suspend, terminate, or restrict your access to
the Bot, or Website if we believe you have violated these Terms or behave disruptively
within the community.
</p>
<p>
Active tickets may be closed or deleted by staff at any time if they are resolved, inactive,
or determined to be in violation of our guidelines.
</p>
</section>
<section>
<h2>5. Disclaimer of Warranties and Limitation of Liability</h2>
<p>
The Bot and Website are provided on an "as is" and "as available" basis. While we strive to
provide a stable service, we make no guarantees that the services will be uninterrupted,
secure, or completely error-free.
</p>
<p>
To the maximum extent permitted by applicable law, the developers and community moderators
shall not be liable for any data loss, service interruptions, or indirect damages arising
from your use of or inability to use the Bot or Website.
</p>
<p></p>
</section>
<section>
<h2>6. Changes to Terms</h2>
<p>
We may update these Terms from time to time to reflect changes in our services or legal
requirements. When we make changes, we will update the "Last updated" date at the top of
this page. Continued use of our Bot or Website after updates are posted constitutes your
acceptance of the revised Terms.
</p>
</section>
<section>
<h2>7. Contact</h2>
<p>
If you have any questions or concerns regarding these Terms of Service, please reach out to
us:
</p>
<ul>
<li>Email: <a href="mailto:apr@vt3e.cat">apr@vt3e.cat</a></li>
<li>Discord: either by creating a support ticket or direct messaging @vt3e.cat</li>
</ul>
</section>
</div>
</template>
<style>
.content {
max-width: 80ch;
display: flex;
flex-direction: column;
gap: 1rem;
}
section {
display: flex;
flex-direction: column;
gap: 0.5rem;
max-width: 80ch;
padding-bottom: 1rem;
position: relative;
&:not(:last-child)::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 6px;
border-radius: 1rem;
background-color: hsla(var(--surface0) / 1);
}
p {
margin-left: 1ch;
}
h3 {
margin-left: 1ch;
}
ul {
margin-left: 3ch;
list-style-type: disc;
li {
margin-bottom: 0.25rem;
}
}
}
</style>
|