-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
34 lines (34 loc) · 1.48 KB
/
error.html
File metadata and controls
34 lines (34 loc) · 1.48 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404: Error Occurred</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
font-family: 'Chakra Petch', sans-serif;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html {
zoom: 100%;
}
</style>
</head>
<body class="bg-black text-white flex items-center justify-center min-h-screen">
<div class="px-4">
<p class="text-pink-500 text-sm mb-2">AN UNEXPECTED ERROR OCCURRED</p>
<h1 class="text-4xl font-bold mb-4">Oops ! Something went wrong.</h1>
<p class="text-gray-400 mb-8">We're experiencing some technical difficulties but our team is on it. While we work on fixing the issue take a break with a cup of coffee. Contact us if you need assistance.</p>
<div class="flex space-x-4">
<a href="./testnet-faucet" class="bg-white text-black py-2 px-4 rounded-full">Return home</a>
<a href="./faucet" class="bg-white text-black py-2 px-4 rounded-full">Try again</a>
</div>
</div>
</body>
</html>