-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
404.html
29 lines (29 loc) · 1.5 KB
/
404.html
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
<!doctype html>
<html class="h-full">
<head>
<meta charset="UTF-8">
<title>Error 404</title>
<meta name="description" content="Error 404 page" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/css/tailwind.min.css">
</head>
<body class="h-full">
<div class="min-h-full bg-gray-800 px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
<div class="mx-auto max-w-max">
<main class="sm:flex">
<p class="text-4xl font-bold tracking-tight text-indigo-600 sm:text-5xl">404</p>
<div class="sm:ml-6">
<div class="sm:border-l sm:border-gray-200 sm:pl-6">
<h1 class="text-4xl font-bold tracking-tight text-white sm:text-5xl">Page not found</h1>
<p class="mt-1 text-base text-gray-100">Please check the URL in the address bar and try again.</p>
</div>
<div class="mt-10 flex space-x-3 sm:border-l sm:border-transparent sm:pl-6">
<a href="https://passky.org" class="inline-flex items-center rounded-md border border-transparent bg-indigo-600 px-4 py-2 text-sm font-medium text-white shadow-sm hover:bg-indigo-700 focus:outline-none">Go back home</a>
<a href="https://passky.org/contact" class="inline-flex items-center rounded-md border border-transparent bg-indigo-100 px-4 py-2 text-sm font-medium text-indigo-700 hover:bg-indigo-200 focus:outline-none">Contact support</a>
</div>
</div>
</main>
</div>
</div>
</body>
</html>