-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
69 lines (69 loc) · 3.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!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 src="https://kit.fontawesome.com/76661d0faf.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'geist': ['Geist', 'sans-serif'],
'geist-mono': ['Geist Mono', 'monospace'],
},
animation: {
'gradient': 'gradient 15s ease infinite',
},
keyframes: {
gradient: {
'0%, 100%': {
'background-position': '0% 50%'
},
'50%': {
'background-position': '100% 50%'
},
}
}
}
}
}
</script>
<style>
body {
font-family: 'Geist', sans-serif;
}
.glass {
background: rgba(24, 24, 27, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
</style>
</head>
<body class="min-h-screen flex items-center justify-center p-4 bg-gradient-to-br from-zinc-900 via-zinc-800 to-zinc-900 bg-[length:400%_400%] animate-gradient relative overflow-hidden">
<div class="w-full max-w-md animate-in relative z-10">
<div class="glass rounded-2xl shadow-2xl shadow-zinc-950/50 border border-zinc-700/50 overflow-hidden transition-all duration-300 hover:border-zinc-600/50">
<div class="px-8 py-12 space-y-6">
<div class="flex justify-center">
<div class="h-24 w-24 rounded-full bg-gradient-to-br from-zinc-700 to-zinc-800 flex items-center justify-center shadow-xl">
<i class="fas fa-exclamation-triangle text-5xl text-zinc-100"></i>
</div>
</div>
<div class="space-y-2 text-center">
<h1 class="text-4xl font-bold tracking-tighter bg-gradient-to-r from-zinc-200 via-zinc-300 to-zinc-200 bg-clip-text text-transparent">404 - Page Not Found</h1>
<p class="text-zinc-400">Oops! The page you're looking for doesn't exist.</p>
</div>
<div class="flex justify-center">
<a href="./index.html" class="px-6 py-3 bg-gradient-to-r from-zinc-100 to-zinc-200 hover:from-zinc-200 hover:to-zinc-300 text-zinc-900 rounded-lg font-medium transition-all duration-300 flex items-center justify-center gap-2 shadow-lg shadow-zinc-950/20 hover:shadow-xl hover:shadow-zinc-950/30">
<i class="fas fa-home"></i>
<span>Go Home</span>
</a>
</div>
</div>
</div>
</div>
</body>
</html>