fix: give up and make multiple 404s
This commit is contained in:
parent
6f8f5dad7d
commit
2e4e4727d1
@ -1,12 +1,10 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import Default from "./layouts/default.vue";
|
import Default from "./layouts/default.vue";
|
||||||
|
import FourOhFour from "./pages/404.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Default>
|
<Default>
|
||||||
<main class="flex flex-col grow prose dark:prose-invert">
|
<FourOhFour />
|
||||||
<h1 class="mb-0">404 - Not Found</h1>
|
|
||||||
<p>The page you are looking for cannot be found.</p>
|
|
||||||
</main>
|
|
||||||
</Default>
|
</Default>
|
||||||
</template>
|
</template>
|
||||||
|
8
pages/404.vue
Normal file
8
pages/404.vue
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<main class="flex flex-col grow prose dark:prose-invert">
|
||||||
|
<h1 class="mb-0">404 - Not Found</h1>
|
||||||
|
<p>The page you are looking for cannot be found.</p>
|
||||||
|
</main>
|
||||||
|
</template>
|
Loading…
Reference in New Issue
Block a user