summaryrefslogtreecommitdiff
path: root/src/pages/404.astro
blob: c9c70ca0bc16521817f02a683d85b3ea654be294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
import Layout from "../layouts/Layout.astro";

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>
        <a href="/" class="text-blue-600 hover:underline"
            >← Back to IP / CIDR Calculator</a
        >
    </div>
</Layout>