-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
57 lines (52 loc) · 1.7 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>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<link rel="icon" href="./public/favicon.ico" />
<meta name="msapplication-TileColor" content="#e6007a" />
<meta name="title" content="Polkadot Technical Fellowship" />
<meta
name="description"
content="Polkadot Technical Fellowship - dashboard."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://polkadot-fellows.github.io/dashboard"
/>
<meta
property="og:title"
content="Polkadot Technical Fellowship Collective"
/>
<meta
property="og:description"
content="Polkadot Technical Fellowship - The main dashboard of the Fellowship Collective."
/>
<meta
property="og:image"
content="https://polkadot-fellows.github.io/dashboard/img/twitter.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="Polkadot Technical Fellowship" />
<meta
property="twitter:description"
content="Polkadot Technical Fellowship - The main dashboard of the Fellowship Collective."
/>
<meta
property="twitter:image"
content="https://polkadot-fellows.github.io/dashboard/img/twitter.png"
/>
<script type="module">
import { Buffer } from 'buffer'
window.Buffer = Buffer
</script>
<title>Polkadot Technical Fellowship</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>