safetwitch/src/views/PageNotFound.vue

12 lines
337 B
Vue
Raw Normal View History

2023-03-07 01:19:05 -05:00
<script lang="ts">
2023-03-18 13:49:02 -04:00
export default {}
2023-03-07 01:19:05 -05:00
</script>
<template>
2023-09-25 17:25:42 -04:00
<div class="flex flex-col items-center pt-10 font-bold text-5xl text-contrast">
2023-07-20 13:57:01 -04:00
<h1>{{ $t('error.oops') }}</h1>
<h1>{{ $t('error.notfound') }}</h1>
2023-09-25 17:25:42 -04:00
<h2 class="text-4xl">maybe go <RouterLink to="/" class="text-contrast">home</RouterLink>?</h2>
2023-03-18 13:49:02 -04:00
</div>
</template>