-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
104 lines (95 loc) · 3.11 KB
/
404.html
File metadata and controls
104 lines (95 loc) · 3.11 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found - KashCal</title>
<meta name="robots" content="noindex">
<link rel="icon" type="image/svg+xml" href="https://raw.githubusercontent.com/KashCal/KashCal/main/fastlane/metadata/android/en-US/images/icon.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
padding: 2rem;
text-align: center;
}
.container {
max-width: 500px;
}
.error-code {
font-size: 8rem;
font-weight: 800;
background: linear-gradient(135deg, #00d4aa 0%, #7c3aed 50%, #ec4899 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 1rem;
}
h1 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #e0e0e0;
}
p {
color: #888;
margin-bottom: 2rem;
line-height: 1.6;
}
.home-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem 1.75rem;
background: linear-gradient(135deg, #00d4aa, #00b894);
color: #000;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
}
.home-link:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}
.home-link svg {
width: 18px;
height: 18px;
}
@media (prefers-reduced-motion: reduce) {
.home-link {
transition: none;
}
.home-link:hover {
transform: none;
}
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">404</div>
<h1>Page Not Found</h1>
<p>The calendar event you're looking for doesn't exist. It may have been moved or deleted.</p>
<a href="/" class="home-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
Back to KashCal
</a>
</div>
</body>
</html>