-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
65 lines (65 loc) · 1.77 KB
/
Copy path404.php
File metadata and controls
65 lines (65 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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 | ChainPulse</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #0b0e13, #1a1d2e);
color: #e7f0ff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 600px;
text-align: center;
}
.error-code {
font-size: 120px;
font-weight: 800;
background: linear-gradient(135deg, #4ad7ff, #6b50ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
}
h1 {
font-size: 32px;
margin-bottom: 15px;
}
p {
opacity: 0.8;
margin-bottom: 30px;
line-height: 1.6;
}
.btn {
display: inline-block;
padding: 14px 30px;
background: linear-gradient(135deg, #4ad7ff, #6b50ff);
color: #0b0e13;
text-decoration: none;
border-radius: 10px;
font-weight: 700;
transition: all 0.3s ease;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(74,215,255,0.4);
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">404</div>
<h1>Page Not Found</h1>
<p>The page you're looking for doesn't exist or has been moved.</p>
<a href="/ChainPulse/" class="btn">Go to Homepage</a>
</div>
</body>
</html>