summaryrefslogtreecommitdiff
path: root/src/pages/404.astro
blob: 671fe4fbc0ffb0619f93036c5bd9335396727ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
import "../styles/global.css";
import "@fontsource/inter/300.css";
import "@fontsource/inter/500.css";
import "@fontsource/jetbrains-mono/400.css";

const title = "404 - Page Not Found | Domain Name Hack Club";
const description = "Page not found";
---

<!doctype html>
<html lang="en">
	<head>
		<meta charset="utf-8" />
		<title>{title}</title>
		<meta name="description" content={description} />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<meta name="robots" content="noindex, nofollow" />
		<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
	</head>

	<body class="h-screen flex items-center justify-center bg-white">
		<main class="text-center px-6">
			<h1
				class="text-8xl font-light tracking-tight mb-8 text-gray-300 font-mono"
			>
				404
			</h1>
			<h2 class="text-2xl font-light text-gray-700 mb-8">
				Page not found
			</h2>
			<a
				href="/"
				class="text-pink-600 hover:text-pink-800 font-medium transition-colors duration-200 text-lg"
			>
				← Back to Domain Name Hack Club
			</a>
		</main>
	</body>
</html>