safetwitch/src/views/PageNotFound.vue

12 lines
330 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">
<h1>oops....</h1>
<h1>this page wasn't found()</h1>
<h2 class="text-4xl">maybe go <RouterLink to="/" class="text-gray-500">home</RouterLink>?</h2>
</div>
</template>