-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (44 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="connect-src 'self' * 'unsafe-eval'"
/>
<style>
@font-face {
font-family: Inter;
font-style: normal;
font-weight: 500;
src: url('/fonts/Inter500.woff2') format('woff2');
}
@font-face {
font-family: InterSemiBold;
font-style: normal;
font-weight: 600;
src: url('/fonts/Inter600.woff2') format('woff2');
}
@font-face {
font-family: InterBold;
font-style: normal;
font-weight: 700;
src: url('/fonts/Inter700.woff2') format('woff2');
}
@font-face {
font-family: Unbounded;
font-style: normal;
font-weight: 700;
src: url('/fonts/Unbounded.woff2') format('woff2');
}
body {
overflow: hidden;
}
</style>
<title>Polkadot Live</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/renderer/index.tsx"></script>
</body>
</html>