-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (49 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Super User</title>
<!-- SEO -->
<!-- Title -->
<meta name="application-name" content="Super User" />
<meta name="title" content="Super User" />
<meta name="twitter:title" content="Super User" />
<meta property="og:title" content="Super User" />
<!-- Description -->
<meta name="description" content="Do stuff like a pro." />
<meta name="twitter:description" content="Do stuff like a pro." />
<meta property="og:description" content="Do stuff like a pro." />
<!-- Image -->
<!-- <meta
name="twitter:image"
content="https://secret-metamask-demo.pages.dev/socials-preview.png"
/>
<meta
property="og:image"
content="https://secret-metamask-demo.pages.dev/socials-preview.png"
/> -->
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@SecretNetwork" />
<meta name="twitter:creator" content="@SecretNetwork" />
<!-- Facebook/Telegram -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Super User" />
<meta property="og:url" content="https://superuser.scrtlabs.com" />
<meta property="og:locale" content="en_US" />
<link rel="icon" type="image/png" href="/favicon.png" />
</head>
<body>
<div id="root"></div>
<script>
// fix the keplr window type error when there are no node polyfills
var global = global || window;
</script>
<script type="module">
import { Buffer } from "buffer";
window.Buffer = Buffer;
</script>
<script type="module" src="/src/App.tsx"></script>
</body>
</html>