Files
Website/resources/js/views/Rules.vue
2023-01-24 15:13:03 +10:00

41 lines
1.1 KiB
Vue

<template>
<SMContainer class="rules">
<h1>Rules</h1>
<h2>Discord</h2>
<ul>
<li>No Spamming / Excessive Swearing</li>
<li>No Racism / Hate Speech</li>
<li>No NSFW content in any of our channels</li>
<li>No Doxxing</li>
<li>No Advertising</li>
<li>No sending malicious content</li>
<li>No Punishment evasion</li>
<li>No Excessive Trolling / Harrassment</li>
<li>No political or religious statements</li>
<li>
Please follow Discord's
<a href="https://discord.com/terms">Terms of Service</a>
</li>
</ul>
<h2>Minecraft</h2>
<ul>
<li>
<strong>No Griefing</strong> - Players are not permitted to
grief other players builds outside of the Survival game-mode.
</li>
</ul>
</SMContainer>
</template>
<style lang="scss">
.rules {
h2 {
margin-bottom: 0.5rem;
}
li {
margin-bottom: 0.5rem;
}
}
</style>