forked from compolabs/spark-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 2.59 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
<!doctype html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<title>Spark</title>
<meta charset="utf-8" />
<script src="/datafeeds/udf/dist/bundle.js"></script>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport" />
<meta content="A Decentralized Order Book on Fuel.Network" name="description" />
<!-- https://favicon.inbrowser.app/tools/favicon-generator -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="icon" href="/favicon-32x32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="/favicon-16x16.png" type="image/png" sizes="16x16" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)" />
<!-- Facebook Meta Tags -->
<meta content="https://app.sprk.fi" property="og:url" />
<meta content="website" property="og:type" />
<meta content="Spark" property="og:title" />
<meta content="Cross-margin oracle-based perpetual order book on Fuel" property="og:description" />
<meta
content="https://opengraph.b-cdn.net/production/documents/68187cdc-9a1a-4117-9f2c-d31b8b341b5d.png?token=LRhaXV-Rrz-IJOtW2ynpuFWnfdrp4tiWAlcdO2H4kbI&height=655&width=1200&expires=33245123728"
property="og:image"
/>
<!-- Twitter Meta Tags -->
<meta content="summary_large_image" name="twitter:card" />
<meta content="app.sprk.fi" property="twitter:domain" />
<meta content="https://app.sprk.fi" property="twitter:url" />
<meta content="Spark" name="twitter:title" />
<meta content="Cross-margin oracle-based perpetual order book on Fuel" name="twitter:description" />
<meta
content="https://opengraph.b-cdn.net/production/documents/68187cdc-9a1a-4117-9f2c-d31b8b341b5d.png?token=LRhaXV-Rrz-IJOtW2ynpuFWnfdrp4tiWAlcdO2H4kbI&height=655&width=1200&expires=33245123728"
name="twitter:image"
/>
</head>
<body style="background-color: #050505">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div id="portal-root"></div>
<script type="module" src="/src/index.tsx"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-27LTSEDRM1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-27LTSEDRM1");
</script>
</body>
</html>