| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | <template>	<div class="container">		<i class="material-icons">not_interested</i>		<h4>			You are banned for			<strong>{{ moment(ban.expiresAt).fromNow(true) }}</strong>		</h4>		<h5 class="reason">			<strong>Reason: </strong>			{{ ban.reason }}		</h5>	</div></template><script>import { mapState } from "vuex";export default {	data() {		return {			moment		};	},	computed: mapState({		ban: state => state.user.auth.ban	})};</script><style lang="scss" scoped>@import "styles/global.scss";.container {	display: flex;	justify-content: center;	align-items: center;	flex-direction: column;	height: 100vh;	max-width: 1000px;	padding: 0 20px;}.reason {	text-align: justify;}i.material-icons {	cursor: default;	font-size: 65px;	color: tomato;}</style>
 |