-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (86 loc) · 2.57 KB
/
index.html
File metadata and controls
98 lines (86 loc) · 2.57 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
<!--<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>NZXT Elite Screen Customizer</title>
<script>
// Redirect old URLs to new URLs
if (window.location.pathname.includes('/nzxt-web-integration-amc')) {
const newPath = window.location.pathname.replace('/nzxt-web-integration-amc', '/nzxt-esc');
window.location.replace(newPath + window.location.search + window.location.hash);
}
</script>
</head>
<body style="margin:0;background:#000;">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>NZXT-ESC – New Version Available</title>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "b34a7628ace24997ade21615c61f1470"}'></script><!-- End Cloudflare Web Analytics -->
<link rel="canonical" href="https://nzxt-esc.pages.dev/" />
<!-- Instant redirect -->
<meta http-equiv="refresh" content="0; url=https://nzxt-esc.pages.dev/" />
<style>
:root {
color-scheme: dark;
}
body {
margin: 0;
background: #0b0b0c;
color: #e5e7eb;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
max-width: 420px;
padding: 24px;
}
.title {
font-size: 20px;
font-weight: 600;
margin-bottom: 8px;
}
.subtitle {
font-size: 14px;
color: #9ca3af;
margin-bottom: 16px;
}
.link {
color: #60a5fa;
text-decoration: none;
font-size: 14px;
}
.link:hover {
text-decoration: underline;
}
</style>
<script>
window.location.replace("https://nzxt-esc.pages.dev/");
</script>
</head>
<body>
<div class="container">
<div class="title">A new version of NZXT-ESC is available</div>
<div class="subtitle">
You are being redirected to the latest version.
</div>
<a class="link" href="https://nzxt-esc.pages.dev/">
Open latest version →
</a>
</div>
</body>
</html>