-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
106 lines (106 loc) · 2.21 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html
lang="en"
data-theme="bonfire"
>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<meta
name="theme-color"
content="#FFA200"
/>
<title>Bonfire</title>
<meta
name="name"
content="Bonfire"
/>
<meta
name="description"
content="A communal bonfire for verifiably burning Algorand ASAs"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<!-- https://developer.mozilla.org/en-US/docs/Web/Manifest -->
<link
rel="manifest"
href="/site.webmanifest"
/>
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://thebonfire.app"
/>
<meta
property="og:type"
content="website"
/>
<meta
property="og:title"
content="Bonfire"
/>
<meta
property="og:description"
content="A communal bonfire for verifiably burning Algorand ASAs"
/>
<meta
property="og:image"
content="https://i.ibb.co/VVbMYpM/IMG-1298.jpg"
/>
<!-- Twitter Meta Tags -->
<meta
property="twitter:domain"
content="thebonfire.app"
/>
<meta
property="twitter:url"
content="https://thebonfire.app"
/>
<meta
name="twitter:title"
content="Bonfire"
/>
<meta
name="twitter:description"
content="A communal bonfire for verifiably burning Algorand ASAs"
/>
<meta
name="twitter:card"
content="summary_large_image"
/>
<meta
name="twitter:image"
content="https://i.ibb.co/jbH3DzW/IMG-1298.jpg"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script>
global = globalThis
</script>
<script
src="/src/index.tsx"
type="module"
></script>
</body>
</html>