-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
67 lines (62 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo-brand.svg" />
<link rel="apple-touch-icon" type="image/svg+xml" href="/logo-brand.svg">
<link rel="apple-touch-icon" type="image/png" href="/icons/192.png" sizes="192x192">
<link rel="mask-icon" type="image/svg+xml" href="/safari-pinned-tab.svg" color="#20ECC7">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,maximum-scale=1,user-scalable=no,shrink-to-fit=no,viewport-fit=cover">
<meta name="facebook-domain-verification" content="9v55mpg109nm9wxh9i2tsrga9u1bhq" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta
name="description"
content="Geyser is a bitcoin crowdfunding platform that enables campaign creators to launch their projects with rewards and engage their communities with posts and content."
/>
<meta
name="keywords"
content="Bitcoin crowdfunding, lightning crowdfunding, Bitcoin community, rewards"
/>
<style>
html {
height: 100%;
}
#root {
display: flex;
flex-direction: column;
height: 100%;
}
</style>
<title>Geyser Fund - Crowdfunding with Bitcoin</title>
</head>
<!-- 100% privacy friendly analytics -->
<script async defer src="https://sa.geyser.fund/latest.js"></script>
<noscript><img src="https://sa.geyser.fund/noscript.gif" alt=""
referrerpolicy="no-referrer-when-downgrade" /></noscript>
<script>window.twttr = (function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));</script>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<script>
function useColor(light="white", dark="#111110"){
return window.localStorage.getItem("chakra-ui-color-mode") === "dark" ? dark : light
}
document.body.style.background = useColor();
</script>
</html>