-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
133 lines (129 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" data-icon="favicon" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dashboard | reactivesearch.io</title>
<link rel="shortcut icon" href="/static/images/favicon.ico" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700"
rel="stylesheet"
/>
<style media="screen">
#help {
position: fixed;
bottom: 15px;
right: 15px;
display: inline;
z-index: 2;
}
</style>
<script>
const APP_ID = 'f9514ssx';
(function() {
const w = window;
const ic = w.Intercom;
if (typeof ic === 'function') {
ic('reattach_activator');
ic('update', w.intercomSettings);
} else {
const d = document;
var i = function() {
i.c(arguments);
};
i.q = [];
i.c = function(args) {
i.q.push(args);
};
w.Intercom = i;
const l = function() {
const s = d.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src =
'https://widget.intercom.io/widget/' + 'f9514ssx';
const x = d.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
};
if (w.attachEvent) {
w.attachEvent('onload', l);
} else {
w.addEventListener('load', l, false);
}
}
})();
window.intercomSettings = {
app_id: APP_ID,
alignment: 'right',
custom_launcher_selector: '.open_intercom',
hide_default_launcher: true,
};
</script>
<script src="https://cdn.auth0.com/js/auth0/9.18/auth0.min.js"></script>
<script type="text/javascript">
var webAuth = new auth0.WebAuth({
domain: 'reactivesearch-cloud.us.auth0.com',
clientID: 'Qn5Kf234JXQ6rzvagKXtKv2uJ0LKEGHW',
redirectUri: window.location.origin,
audience: 'https://reactivesearch-cloud.us.auth0.com/api/v2/',
scope: 'read:current_user update:current_user_metadata',
});
</script>
</head>
<body>
<div id="root"></div>
<div id="help"></div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-54082612-12"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-54082612-12');
</script>
<!-- Hotjar Tracking Code for reactivesearch.io -->
<script>
(function(h, o, t, j, a, r) {
h.hj =
h.hj ||
function() {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = {
hjid: 22389,
hjsv: 6,
};
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(
window,
document,
'https://static.hotjar.com/c/hotjar-',
'.js?sv=',
);
</script>
<!-- Start of HubSpot Embed Code -->
<script
type="text/javascript"
id="hs-script-loader"
async
defer
src="//js.hs-scripts.com/4709730.js"
></script>
<script>
var _hsq = (window._hsq = window._hsq || []);
_hsq.push(['setPath', window.location.pathname]);
_hsq.push(['trackPageView']);
</script>
<!-- End of HubSpot Embed Code -->
</body>
</html>