-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
57 lines (54 loc) · 1.87 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
<!doctype html>
<html lang="en">
<head>
<script>
window.dataLayer = window.dataLayer || [];
</script>
<meta http-equiv="Cache-Control" content="max-age=0" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta http-equiv="Expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="Pragma" content="no-cache" />
<meta charset="utf-8" />
<title>SSV Network</title>
<meta
content="minimum-scale=1, initial-scale=1, width=device-width"
name="viewport"
/>
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">-->
<!-- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>-->
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link href="/favicon.ico" rel="icon" />
<meta content="#000000" name="theme-color" />
<meta
content="Explore the Secret Shared Validators network: statistics, operators and validators."
name="description"
/>
<link href="/logo192.png" rel="apple-touch-icon" />
</head>
<body class="dark2" style="padding: 0; margin: 0">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module">
import { Buffer } from "buffer";
globalThis.Buffer = Buffer;
window.Buffer = Buffer;
</script>
<script type="module" src="/src/main.tsx"></script>
<iframe
id="self-frame"
style="border: 0; height: 100vh; width: 100%; display: none"
></iframe>
</body>
</html>