File size: 1,364 Bytes
9edd497
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NWO Apocalypse · API Mission Control</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="https://huggingface.co/spaces/CPater/nwo.apocalypse/resolve/main/phi.png">
<style>
  body{margin:0;background:#04060c;color:#fff;font-family:ui-sans-serif,system-ui,sans-serif;
       min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center}
  .msg{padding:24px}.msg h1{font-weight:200;letter-spacing:.18em;margin-bottom:8px;font-size:22px}
  .msg p{color:rgba(255,255,255,.55);font-size:13px;letter-spacing:.06em}
  a{color:#33ccff;text-decoration:none}
</style>
</head>
<body>
<div class="msg">
  <h1>API mission control moved</h1>
  <p>Redirecting to the unified SPA…</p>
  <p><a id="link" href="index.html#api">Click here if not redirected</a></p>
</div>
<script>
  const path = window.location.pathname;
  const dir = path.substring(0, path.lastIndexOf('/') + 1);
  const target = window.location.origin + dir + 'index.html#api';
  document.getElementById('link').href = target;
  try { if (window.top && window.top !== window.self) { window.top.location.replace(target); }
        else { window.location.replace(target); } } catch (e) { window.location.replace(target); }
</script>
</body>
</html>