-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (63 loc) · 2.8 KB
/
Copy pathindex.html
File metadata and controls
69 lines (63 loc) · 2.8 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
<!doctype html>
<html lang="en">
<head>
<script>
(function () {
const THEME_KEY = 'wraith-theme';
const stored = localStorage.getItem(THEME_KEY);
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const theme =
stored === 'light' || stored === 'dark' ? stored : prefersDark ? 'dark' : 'light';
if (theme === 'dark') {
document.documentElement.classList.add('dark');
}
document.documentElement.style.visibility = 'visible';
})();
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wraith Demo — Stealth Address SDK</title>
<meta
name="description"
content="A developer demo for the Wraith Protocol stealth address SDK. Send and receive private payments on Horizen and Stellar."
/>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Theme -->
<meta name="theme-color" content="#ffffff" />
<meta name="color-scheme" content="light dark" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Wraith Demo — Stealth Address SDK" />
<meta
property="og:description"
content="Send and receive private payments on Horizen and Stellar using stealth addresses. No backend, no API keys — pure SDK usage."
/>
<meta property="og:image" content="/og-image.png" />
<meta property="og:url" content="https://demo.usewraith.xyz" />
<meta property="og:site_name" content="Wraith Protocol" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Wraith Demo — Stealth Address SDK" />
<meta
name="twitter:description"
content="Send and receive private payments on Horizen and Stellar using stealth addresses."
/>
<meta name="twitter:image" content="/og-image.png" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body class="bg-surface text-on-surface" style="visibility: hidden">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>