Merge pull request #312 from sysadminsmedia/tonya/improve-404-page

Improve 404 page
This commit is contained in:
Tonya
2024-10-30 19:12:08 +00:00
committed by GitHub
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>