19 lines
452 B
Vue
19 lines
452 B
Vue
<script lang="ts">
|
|
export default {}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex flex-col max-w-prose justify-center text-center mx-auto p-6 bg-ctp-crust rounded-lg text-white"
|
|
>
|
|
<div class="mb-6">
|
|
<h1 class="font-bold text-5xl">{{ $t('error.oops') }}</h1>
|
|
<p class="font-bold text-3xl">{{ $t('error.notsupposedtohappen') }}</p>
|
|
</div>
|
|
|
|
<p class="text-xl">
|
|
{{ $t('error.serverexplain') }}
|
|
</p>
|
|
</div>
|
|
</template>
|