feat: add 404 page
This commit is contained in:
parent
df4f7f8630
commit
87cf20ed48
13
pages/404.vue
Normal file
13
pages/404.vue
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
useTitle("404 - Not Found", "You're lost!");
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<main class="prose dark:prose-invert max-w-3xl transition">
|
||||||
|
<h1 class="mb-1">404 - Not Found</h1>
|
||||||
|
<p>
|
||||||
|
You're lost! Don't worry, here's a link
|
||||||
|
<a href="/">back to the home page.</a>
|
||||||
|
</p>
|
||||||
|
</main>
|
||||||
|
</template>
|
Loading…
Reference in New Issue
Block a user