feat: make 404 follow theme and add a return home page

This commit is contained in:
tonyaellie
2024-10-30 16:01:05 +00:00
parent 1268fd90ba
commit 4510712359
2 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
<template>
<main class="grid min-h-screen w-full place-items-center bg-blue-100">
<main class="grid min-h-screen w-full place-items-center">
<slot></slot>
</main>
</template>

View File

@@ -8,8 +8,9 @@
</script>
<template>
<h1 class="flex flex-col text-center font-extrabold text-blue-500">
<h1 class="flex flex-col text-center font-extrabold">
<span class="text-7xl">404.</span>
<span class="mt-5 text-5xl"> Page Not Found </span>
<NuxtLink to="/" class="btn mt-5 text-xl"> Return Home </NuxtLink>
</h1>
</template>