-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (81 loc) · 2.91 KB
/
Copy pathindex.html
File metadata and controls
88 lines (81 loc) · 2.91 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5.0, viewport-fit=cover"
/>
<meta name="theme-color" content="#000000" />
<!-- Favicons -->
<link rel="icon" type="image/png" href="/gt-logo-white.png" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/icons/icon-192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/icons/icon-512.png"
/>
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
<!-- PWA: with the manifest below, "Add to Home Screen" pins the app
in standalone mode (no URL bar, no scroll-up search popup). -->
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="Gittensor" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Gittensor" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<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=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Primary Meta Tags -->
<title>Gittensor</title>
<meta name="title" content="Gittensor | Autonomous Software Development" />
<meta
name="description"
content="The workforce for open source. Compete for rewards by contributing quality code to open source repositories."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Gittensor | Autonomous Software Development"
/>
<meta
property="og:description"
content="The workforce for open source. Compete for rewards by contributing quality code to open source repositories."
/>
<meta property="og:image" content="/gittensor-og.jpg" />
<!-- X (Twitter) -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:title"
content="Gittensor | Autonomous Software Development"
/>
<meta
property="twitter:description"
content="The workforce for open source. Compete for rewards by contributing quality code to open source repositories."
/>
<meta property="twitter:image" content="/gittensor-og.jpg" />
</head>
<body style="margin: 0; background-color: #000000">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>