-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (121 loc) · 3.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MapTogether.io - Multiplayer Wardley Mapping</title>
<link rel="preconnect" href="https://fonts.bunny.net" />
<link href="https://fonts.bunny.net/css?family=jetbrains-mono:400" rel="stylesheet" />
<script>
!(function () {
var analytics = (window.analytics = window.analytics || []);
if (!analytics.initialize)
if (analytics.invoked)
console.error("Segment snippet included twice.");
else {
analytics.invoked = !0;
analytics.methods = [
"trackSubmit",
"trackClick",
"trackLink",
"trackForm",
"pageview",
"identify",
"reset",
"group",
"track",
"ready",
"alias",
"debug",
"page",
"once",
"off",
"on",
"addSourceMiddleware",
"addIntegrationMiddleware",
"setAnonymousId",
"addDestinationMiddleware",
];
analytics.factory = function (e) {
return function () {
var t = Array.prototype.slice.call(arguments);
t.unshift(e);
analytics.push(t);
return analytics;
};
};
for (var e = 0; e < analytics.methods.length; e++) {
var key = analytics.methods[e];
analytics[key] = analytics.factory(key);
}
analytics.load = function (key, e) {
var t = document.createElement("script");
t.type = "text/javascript";
t.async = !0;
t.src =
"https://cdn.segment.com/analytics.js/v1/" +
key +
"/analytics.min.js";
var n = document.getElementsByTagName("script")[0];
n.parentNode.insertBefore(t, n);
analytics._loadOptions = e;
};
analytics._writeKey = "9nSHCwlRB8HrSw03F9TR3eZB1MEcfkBT";
analytics.SNIPPET_VERSION = "4.15.3";
analytics.load("9nSHCwlRB8HrSw03F9TR3eZB1MEcfkBT");
analytics.page();
}
})();
</script>
<script type="text/javascript">
const VITE_HEAP_ID = `%VITE_HEAP_ID%`; // Vite env variable
(window.heap = window.heap || []),
(heap.load = function (e, t) {
(window.heap.appid = e), (window.heap.config = t = t || {});
var r = document.createElement("script");
(r.type = "text/javascript"),
(r.async = !0),
(r.src = "https://cdn.heapanalytics.com/js/heap-" + e + ".js");
var a = document.getElementsByTagName("script")[0];
a.parentNode.insertBefore(r, a);
for (
var n = function (e) {
return function () {
heap.push(
[e].concat(Array.prototype.slice.call(arguments, 0))
);
};
},
p = [
"addEventProperties",
"addUserProperties",
"clearEventProperties",
"identify",
"resetIdentity",
"removeEventProperty",
"setEventProperties",
"track",
"unsetEventProperty",
],
o = 0;
o < p.length;
o++
)
heap[p[o]] = n(p[o]);
});
heap.load(VITE_HEAP_ID);
</script>
</head>
<body>
<div id="projectMenu" class="bg-zinc-700"></div>
<div id="toolMenu" class="bg-zinc-700"></div>
<div id="mainContainer">
<div id="map"></div>
<div id="resize"></div>
<div id="editorContainer">
<div id="editor"></div>
</div>
</div>
<script type="module" src="/src/app/index.tsx"></script>
</body>
</html>