diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/pages/404.astro | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/pages/404.astro b/src/pages/404.astro index c9c70ca..abff77d 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -5,16 +5,12 @@ const title = "404 - Page Not Found"; --- <Layout title={title} noindex={true}> - <h1 - class="my-3 sm:my-1 text-center sm:text-left text-4xl font-bold tracking-tight text-gray-900 sm:text-6xl" - > - 404 - Page Not Found - </h1> - - <div class="my-6 text-lg leading-8 text-slate-900"> - <p class="mb-8"> - The page you're looking for doesn't exist. - </p> + <div class="my-3 sm:my-1 text-center sm:text-left"> + <h1 class="text-6xl font-bold tracking-tight text-gray-900 sm:text-6xl"> + 404 + </h1> + <h2 class="text-2xl font-bold text-gray-600">Page Not Found</h2> + <p class="my-8">The page you're looking for doesn't exist.</p> <a href="/" class="text-blue-600 hover:underline" >← Back to IP / CIDR Calculator</a > |
