forked from farirpgs/fari-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (126 loc) · 3.52 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Fari App | The Free and Open-Source Virtual Tabletop</title>
<link rel="icon" type="image/png" href="./images/fari/favicon.png" />
<meta
name="google-site-verification"
content="_SkIJRylG7gB1j0jbxxXboxdViB678DOHglRv43DNtE"
/>
<meta name="fragment" content="!" />
<!-- Font -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- OLD Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-150306816-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-150306816-1"); // old
</script>
<!-- NEW lobal site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-BRZ1HL2EJG"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-BRZ1HL2EJG");
</script>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
</head>
<style>
.full-page-loader {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
.full-page-loader > img {
animation: 1.8s infinite heartbeat;
}
@keyframes heartbeat {
0% {
transform: scale(1);
}
25% {
transform: scale(1.05);
}
50% {
transform: scale(1);
}
75% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
<body>
<div id="root">
<div class="full-page-loader">
<img width="200" src="./images/fari/logo-blue.png" alt="Loading Fari" />
</div>
</div>
<script
type="text/javascript"
src="https://ko-fi.com/widgets/widget_2.js"
></script>
<script>
!(function (w, d, i, s) {
function l() {
if (!d.getElementById(i)) {
var f = d.getElementsByTagName(s)[0],
e = d.createElement(s);
(e.type = "text/javascript"),
(e.async = !0),
(e.src = "https://canny.io/sdk.js"),
f.parentNode.insertBefore(e, f);
}
}
if ("function" != typeof w.Canny) {
var c = function () {
c.q.push(arguments);
};
(c.q = []),
(w.Canny = c),
"complete" === d.readyState
? l()
: w.attachEvent
? w.attachEvent("onload", l)
: w.addEventListener("load", l, !1);
}
})(window, document, "canny-jssdk", "script");
</script>
<script type="module" src="./lib/index.tsx"></script>
</body>
</html>