public/error.vue

13 lines
306 B
Vue
Raw Normal View History

2022-08-10 18:47:39 -04:00
<script setup lang="ts">
2022-08-10 18:56:06 -04:00
import Default from "./layouts/default.vue";
2022-08-10 18:47:39 -04:00
</script>
<template>
<Default>
2022-08-10 18:56:06 -04:00
<main class="flex flex-col grow prose dark:prose-invert">
<h1 class="mb-0">404 - Not Found</h1>
2022-08-10 18:47:39 -04:00
<p>The page you are looking for cannot be found.</p>
</main>
</Default>
</template>