-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.56 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.56 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<meta name="theme-color" content="#0ea5e9" />
<title>Wind Example DApp</title>
<meta
name="description"
content="A minimal Vexanium DApp example using WindKit (WharfKit + PeerJS) for cross-device wallet login and transactions."
/>
<!-- Favicon / Icons (ganti jika perlu) -->
<link rel="icon" type="image/png" href="/icon-vex.png" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Wind Example DApp" />
<meta
property="og:description"
content="Vexanium DApp example with WindKit: QR login, session handling, and basic balance check."
/>
<meta property="og:image" content="/banner.png" />
<meta property="og:url" content="/" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Wind Example DApp" />
<meta
name="twitter:description"
content="Vexanium DApp example with WindKit (WharfKit + PeerJS)."
/>
<meta name="twitter:image" content="/banner.png" />
</head>
<body class="bg-white text-slate-900">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>