-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.html
More file actions
19 lines (19 loc) · 721 Bytes
/
Copy pathdocs.html
File metadata and controls
19 lines (19 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Monarch Shield Docs</title>
<meta name="description" content="Redirects to the official Monarch Shield documentation site." />
<meta http-equiv="refresh" content="0; url=/docs/" />
<link rel="canonical" href="https://x402ms.ai/docs/" />
<script>
const doc = new URLSearchParams(window.location.search).get('doc');
const safeDoc = doc && doc.replace(/[^a-z0-9-]/gi, '');
window.location.replace(safeDoc ? `/docs/${safeDoc}.html` : '/docs/');
</script>
</head>
<body>
<p>Redirecting to <a href="/docs/">Monarch Shield Docs</a>.</p>
</body>
</html>