public/layouts/error.vue

13 lines
261 B
Vue
Raw Normal View History

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