-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (80 loc) · 4.55 KB
/
Copy pathindex.html
File metadata and controls
86 lines (80 loc) · 4.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="color-scheme" content="dark" />
<!-- Favicon (match docs) -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Primary meta -->
<title>Opaque — Cross-Chain Stealth Address Protocol</title>
<meta name="description" content="Opaque is a cross-chain privacy protocol powered by stealth addresses. Send and receive tokens at one-time stealth addresses derived from a single meta-address across Ethereum and Solana — private, unlinkable, and verifiable." />
<meta name="keywords" content="stealth addresses, cross-chain privacy, Ethereum privacy, Solana privacy, stealth meta-address, privacy wallet, unlinkable payments, EIP-5564, zero-knowledge proofs, programmable reputation" />
<meta name="author" content="Opaque" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://opaque.cash/" />
<link rel="preconnect" href="https://res.cloudinary.com" crossorigin />
<link rel="dns-prefetch" href="https://res.cloudinary.com" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://opaque.cash/" />
<meta property="og:title" content="Opaque — Cross-Chain Stealth Address Protocol" />
<meta property="og:description" content="Send and receive tokens at one-time stealth addresses across Ethereum and Solana. One meta-address, unlinkable payments, optional ZK-backed reputation." />
<meta
property="og:image"
content="https://res.cloudinary.com/doiyg0p4w/image/upload/v1774887062/opaque-og-psr_xwvx0b.svg"
/>
<meta
property="og:image:secure_url"
content="https://res.cloudinary.com/doiyg0p4w/image/upload/v1774887062/opaque-og-psr_xwvx0b.svg"
/>
<meta property="og:image:type" content="image/svg+xml" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Opaque — Cross-Chain Stealth Address Protocol" />
<meta property="og:site_name" content="Opaque" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://opaque.cash/" />
<meta name="twitter:title" content="Opaque — Cross-Chain Stealth Address Protocol" />
<meta name="twitter:description" content="Send and receive tokens at one-time stealth addresses across Ethereum and Solana. One meta-address, unlinkable payments." />
<meta
name="twitter:image"
content="https://res.cloudinary.com/doiyg0p4w/image/upload/v1774887062/opaque-og-psr_xwvx0b.svg"
/>
<meta name="twitter:image:alt" content="Opaque — Cross-Chain Stealth Address Protocol" />
<!-- Theme & mobile -->
<meta name="theme-color" content="#0a0a0a" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#07080d" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<!--
Fonts (match docs.opaque.cash).
OPQ-031: this Google Fonts stylesheet is third-party and carries no Subresource
Integrity (SRI) hash — SRI is impractical here because the returned CSS is
user-agent-dependent, so its hash is not stable. The CSP in vercel.json restricts
style/font loads to fonts.googleapis.com and fonts.gstatic.com only. To fully remove
the external dependency, self-host these fonts under /public and drop the two hosts
from the CSP.
-->
<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=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=JetBrains+Mono:wght@400;500&family=Syne:wght@500;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>