12 lines
334 B
Vue
12 lines
334 B
Vue
<script lang="ts">
|
|
export default {}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col items-center pt-10 font-bold text-5xl text-white">
|
|
<h1>{{ $t('error.oops') }}</h1>
|
|
<h1>{{ $t('error.notfound') }}</h1>
|
|
<h2 class="text-4xl">maybe go <RouterLink to="/" class="text-gray-500">home</RouterLink>?</h2>
|
|
</div>
|
|
</template>
|