-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (61 loc) · 2.11 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- SEO -->
<!-- Title -->
<meta name="application-name" content="Whisprs" />
<meta name="title" content="Whisprs - Private Messages for Cosmos" />
<meta name="twitter:title" content="Whisprs - Private Messages for Cosmos" />
<meta property="og:title" content="Whisprs - Private Messages for Cosmos" />
<!-- Description -->
<meta
name="description"
content="Whisprs is a simple app powered by Secret Network that allows you to send private messages to any
Cosmos address"
/>
<meta
name="twitter:description"
content="A simple app powered by Secret Network that allows you to send private messages to any
Cosmos address"
/>
<meta
property="og:description"
content="A simple app powered by Secret Network that allows you to send private messages to any
Cosmos address"
/>
<!-- Image -->
<meta
name="twitter:image"
content=""
/>
<meta
property="og:image"
content=""
/>
<!-- Twitter -->
<meta name="twitter:card" content="" />
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="" />
<!-- Facebook/Telegram -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="" />
<meta property="og:url" content="" />
<meta property="og:locale" content="en_US" />
<title>Whisprs</title>
<style>
body {
overflow-y: scroll !important;
}
</style>
</head>
<body>
<div id="root"></div>
<script>
window.global = window; // fix readable-stream dependency
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>