-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (74 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link key="cononical" rel="canonical" href="https://space.jesmar.dev/" />
<meta key="og:url" property="og:url" content="https://space.jesmar.dev/" />
<title>Stellar Network Visualizer</title>
<meta
key="og:title"
property="og:title"
content="Stellar Network Visualizer"
/>
<meta
key="og:site_name"
property="og:site_name"
content="Stellar Network Visualizer"
/>
<meta
key="twitter:title"
name="twitter:title"
content="Stellar Network Visualizer"
/>
<meta
key="description"
name="description"
content="Explore the cosmos with this interactive 3D visualization of the Stellar Network!"
/>
<meta
key="og:description"
property="og:description"
content="Explore the cosmos with this interactive 3D visualization of the Stellar Network!"
/>
<meta
key="twitter:description"
name="twitter:description"
content="Explore the cosmos with this interactive 3D visualization of the Stellar Network!"
/>
<link
key="icon"
rel="icon"
type="image/png"
href="/favicon.png"
sizes="192x192"
/>
<link
key="alternate icon"
rel="alternate icon"
href="/favicon.png"
type="image/png"
sizes="192x192"
/>
<link
key="apple-touch-icon"
rel="apple-touch-icon"
href="/favicon.png"
sizes="192x192"
/>
<link key="mask-icon" rel="mask-icon" href="/favicon.svg" color="#000000" />
<meta key="theme-color" name="theme-color" content="#000000" />
<meta key="og:image" property="og:image" content="/og.png" />
<meta key="twitter:image:src" name="twitter:image:src" content="/og.png" />
<meta key="og:type" property="og:type" content="website" />
<meta
key="twitter:card"
name="twitter:card"
content="summary_large_image"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>