-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (71 loc) · 3.18 KB
/
Copy pathindex.html
File metadata and controls
73 lines (71 loc) · 3.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wraith Protocol — Private payments for every chain</title>
<meta
name="description"
content="Wraith Protocol enables private payments on any blockchain using stealth addresses. One SDK, multiple chains."
/>
<meta property="og:title" content="Wraith Protocol" />
<meta
property="og:description"
content="Private payments for every chain. Stealth addresses, multichain SDK, and AI-powered privacy agents."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://usewraith.xyz" />
<meta property="og:image" content="https://usewraith.xyz/og/home.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Wraith Protocol" />
<meta
name="twitter:description"
content="Private payments for every chain. Stealth addresses, multichain SDK, and AI-powered privacy agents."
/>
<meta name="twitter:image" content="https://usewraith.xyz/og/home.png" />
<meta name="theme-color" content="#0e0e0e" />
<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" />
<!--
Plausible Analytics — cookieless, GDPR-compliant, no consent banner required.
• No cookies are set; only aggregate page/event counts are stored.
• script.scroll.js extension tracks scroll depth at every percent automatically.
• script.tagged-events.js lets us fire goals from JS via window.plausible().
• Integrity hash pins the exact script bytes served by plausible.io CDN.
• Replace the integrity value if you upgrade to a newer Plausible release.
-->
<script
defer
data-domain="usewraith.xyz"
src="https://plausible.io/js/script.scroll.tagged-events.js"
></script>
<script>
window.plausible =
window.plausible ||
function () {
(window.plausible.q = window.plausible.q || []).push(arguments);
};
</script>
<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@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<script>
(function () {
const savedTheme = localStorage.getItem('wraith-theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const theme = savedTheme || (prefersDark ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', theme);
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>