-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
43 lines (43 loc) · 1.65 KB
/
404.html
File metadata and controls
43 lines (43 loc) · 1.65 KB
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
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clickette</title>
<link rel="icon" type="image/png" href="image/favicon.svg">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://clickette.instatus.com/en/2c5eddda/widget/script.js"></script>
<style>
body {
background: linear-gradient(to bottom, #1D1A27, #15131C);
}
.click {
color: #575071;
}
</style>
</head>
<body class="min-h-screen text-white">
<section>
<div class="px-8 py-24 mx-auto md:px-12 lg:px-32 max-w-7xl">
<div class="text-center">
<div>
<span class="text-sm font-semibold text-[#575071] uppercase">404</span>
<p class="mt-8 text-4xl font-semibold tracking-tighter text-white text-balance">
Page not found
</p>
<p class="mx-auto mt-4 text-sm font-medium text-white text-balance">
Sorry, we couldn’t find the page you’re looking for.
</p>
<div class="flex flex-col items-center justify-center gap-2 mx-auto mt-8 md:flex-row">
<a href="https://team.clickette.net">
<button class="inline-flex items-center justify-center w-full h-12 gap-3 px-5 py-3 font-medium text-white duration-200 bg-[#575071] md:w-auto rounded-xl hover:bg-gray-700" aria-label="Primary action">
Homepage
</button>
</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>