-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (56 loc) · 2.78 KB
/
404.html
File metadata and controls
61 lines (56 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en" data-theme="system">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3159539127750553" crossorigin="anonymous"></script>
<script>
(function() {
const hostname = window.location.hostname;
let gaId = 'G-ER1HTYDD82';
if (hostname.includes('snapstream-lake.vercel.app')) {
gaId = 'G-8F468V2JWX';
} else if (hostname.includes('snapstream.dippanbhusal.tech')) {
gaId = 'G-ER1HTYDD82';
}
const script = document.createElement('script');
script.async = true;
script.src = 'https://www.googletagmanager.com/gtag/js?id=' + gaId;
document.head.appendChild(script);
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', gaId);
})();
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | SnapStream</title>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root { --brand: #FFDD00; --bg: #F8FAFC; --text: #0F172A; }
[data-theme="dark"] { --bg: #0f172a; --text: #F8FAFC; }
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: var(--bg); color: var(--text);
height: 100vh; margin: 0; display: flex; flex-direction: column;
align-items: center; justify-content: center; text-align: center;
}
h1 { font-size: 8rem; margin: 0; line-height: 1; color: var(--brand); text-shadow: 4px 4px 0px rgba(0,0,0,0.1); }
h2 { font-size: 2rem; margin: 10px 0 20px; }
p { max-width: 400px; line-height: 1.6; opacity: 0.8; margin-bottom: 30px; }
.btn {
background: var(--text); color: var(--bg); padding: 15px 30px;
border-radius: 12px; text-decoration: none; font-weight: 700;
transition: transform 0.2s; display: inline-flex; align-items: center; gap: 10px;
}
.btn:hover { transform: translateY(-3px); background: var(--brand); color: black; }
@media (prefers-color-scheme: dark) { :root { --bg: #0f172a; --text: #F8FAFC; } }
</style>
</head>
<body>
<h1>404</h1>
<h2>Snapshot Not Found</h2>
<p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
<a href="/" class="btn"><i class="fa-solid fa-house"></i> Back to Home</a>
</body>
</html>