-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
101 lines (94 loc) · 3.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Radicle Explorer</title>
<meta name="name" content="Radicle Explorer" />
<meta name="description" content="Explore the Radicle network" />
<meta property="og:url" content="https://app.radicle.xyz" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Radicle Explorer" />
<meta property="og:description" content="Explore the Radicle network" />
<meta
property="og:image"
content="https://app.radicle.xyz/images/radicle-og-853x853-624f.png" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:domain" content="app.radicle.xyz" />
<meta property="twitter:url" content="https://app.radicle.xyz" />
<meta name="twitter:title" content="Radicle Explorer" />
<meta name="twitter:description" content="Explore the Radicle network" />
<meta
name="twitter:image"
content="https://app.radicle.xyz/images/radicle-og-853x853-624f.png" />
<link
rel="preload"
href="/fonts/Inter-Regular.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/Inter-Medium.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/Inter-SemiBold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/Inter-Bold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/JetBrainsMono-Regular.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/JetBrainsMono-Medium.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/JetBrainsMono-SemiBold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/JetBrainsMono-Bold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="/typography.css" />
<link rel="stylesheet" type="text/css" href="/katex.min.css" />
<link rel="stylesheet" type="text/css" href="/colors.css" />
<link rel="stylesheet" type="text/css" href="/elevations.css" />
<link rel="stylesheet" type="text/css" href="/prettylights.css" />
<link rel="stylesheet" type="text/css" href="/index.css" />
<link rel="icon" href="/radicle.svg" type="image/svg+xml" />
<link rel="manifest" href="/app.webmanifest" />
<script type="text/javascript">
// Workaround to get `global` to work in old-school transitive
// dependencies.
window.global = window;
</script>
<script type="module">
// Make global 'Buffer' available to legacy modules.
import { Buffer } from "buffer";
window.Buffer = Buffer;
</script>
</head>
<body>
<script type="module" src="/src/index.ts"></script>
</body>
</html>