-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (45 loc) · 1.86 KB
/
404.html
File metadata and controls
50 lines (45 loc) · 1.86 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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 | Page Not Found</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: { extend: { colors: { primary: '#FFD600', dark: '#1a1a1a' } } }
}
</script>
<link rel="icon" type="image/png" href="https://i.ibb.co/GvMm4MWW/34882.png">
</head>
<body class="bg-gray-50 text-gray-800 h-screen flex flex-col items-center justify-center text-center p-4">
<div class="max-w-md">
<i class="fa-solid fa-link-slash text-6xl text-gray-300 mb-6"></i>
<h1 class="text-6xl font-bold text-dark mb-2">404</h1>
<h2 class="text-2xl font-bold text-gray-600 mb-6">Page Not Found</h2>
<p class="text-gray-500 mb-8">
The encrypted path you are looking for has been lost in the noise.
</p>
<a href="/" class="inline-block bg-primary hover:bg-yellow-400 text-dark font-bold py-3 px-8 rounded-lg shadow-lg transition-transform transform hover:-translate-y-1">
Return to Safety
</a>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H0FYEM7XH2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H0FYEM7XH2');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4JFCC0CE80"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4JFCC0CE80');
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</body>
</html>