-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
45 lines (40 loc) · 2.35 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
<title>Error 404 - Page Not Found</title>
<!-- Favicon -->
<link rel="shortcut icon" href="/assets/favicon.ico">
<!-- Stylesheets -->
<link rel="stylesheet" href="dist/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body class="bg-[#111111]">
<div class="bg-black flex items-center justify-center min-h-screen">
<div class="relative isolate px-6 lg:px-8">
<div class="absolute inset-x-0 -top-40 -z-10 transform-gpu overflow-hidden blur-3xl sm:-top-80">
<svg class="relative left-[calc(50%-11rem)] -z-10 h-[21.1875rem] max-w-none -translate-x-1/2 rotate-[30deg] sm:left-[calc(50%-30rem)] sm:h-[42.375rem]"
viewBox="0 0 1155 678">
<path fill="url(#45de2b6b-92d5-4d68-a6a0-9b9b2abad533)" fill-opacity=".3"
d="M317.219 518.975L203.852 678 0 438.341l317.219 80.634 204.172-286.402c1.307 132.337 45.083 346.658 209.733 145.248C936.936 126.058 882.053-94.234 1031.02 41.331c119.18 108.451 130.68 295.337 121.53 375.223L855 299l21.173 362.054-558.954-142.079z" />
<defs>
<linearGradient id="45de2b6b-92d5-4d68-a6a0-9b9b2abad533" x1="1155.49" x2="-78.208" y1=".177"
y2="474.645" gradientUnits="userSpaceOnUse">
<stop stop-color="#9089FC" />
<stop offset="1" stop-color="#FF80B5" />
</linearGradient>
</defs>
</svg>
</div>
<div class="mx-auto max-w-2xl py-32 sm:py-48 lg:py-40">
<div class="text-center">
<h1 class="text-4xl font-bold tracking-tight text-gray-200">Error 404</h1>
<p class="mt-4 text-lg leading-8 text-gray-100">The page you were looking for does not exist. You may have mistyped the URL or the page may have moved.</p>
</div>
</div>
</div>
</div>
</body>
</html>