safetwitch/src/views/PageNotFound.vue

12 lines
334 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-03-18 13:49:02 -04:00
<div class="flex flex-col items-center pt-10 font-bold text-5xl text-white">
2023-06-13 12:08:43 -04:00
<h1>{{ $t("error.oops") }}</h1>
<h1>{{ $t("error.notfound") }}</h1>
2023-03-18 13:49:02 -04:00
<h2 class="text-4xl">maybe go <RouterLink to="/" class="text-gray-500">home</RouterLink>?</h2>
</div>
</template>