-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (108 loc) · 3.04 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
<!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>Singularity App | A Virtual Tabletop for Forged in the Dark games powered by Fari</title>
<link
rel="icon"
type="image/png"
href="./images/fari/favicon/favicon.ico"
/>
<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"
/>
<!-- 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/app.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>
/**
* Defining `parcelRequire` require because Vite's input is in type="module" and that
* makes Parcel V1, used by PeerJS, invalid because it doesn't declare the `parcelRequire` variable
* https://github.com/parcel-bundler/parcel/issues/1401
*/
var parcelRequire = undefined;
</script>
<script type="module" src="./lib/index.tsx"></script>
</body>
</html>