-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
70 lines (50 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>METAVERSE-DAO | CLOUD ATLAS - Time to connect the dots</title>
<meta charset="UTF-8" />
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<!-- These meta tags are Apple-specific, and set the web application to run in full-screen mode with a black status bar. Learn more at https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Cloud Atlas" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="icon" href="/favicon.png" />
<!-- SEO -->
<meta name='robots' content='max-image-preview:large' />
<meta name="robots" content="max-snippet:-1,max-image-preview:standard,max-video-preview:-1" />
<meta name="description" content="We are building the world’s first Virtual Online Encyclopedia, but of a very special kind… Science fiction meets the real-world" />
<meta property="og:image" content="https://cloudatlas.club/pic/preview.png" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="576" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="METAVERSE-DAO | CLOUD ATLAS" />
<meta property="og:description" content="We are building the world’s first Virtual Online Encyclopedia, but of a very special kind… Science fiction meets the real-world" />
<meta property="og:url" content="https://cloudatlas.club/" />
<meta property="og:site_name" content="METAVERSE-DAO | CLOUD ATLAS" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="METAVERSE-DAO | CLOUD ATLAS" />
<meta name="twitter:description" content="We are building the world’s first Virtual Online Encyclopedia, but of a very special kind… Science fiction meets the real-world" />
<meta name="twitter:image" content="https://cloudatlas.club/pic/preview.png" />
<meta name="twitter:image:width" content="1024" />
<meta name="twitter:image:height" content="576" />
<link rel="canonical" href="https://cloudatlas.club/" />
<!-- needed for font awesome-->
<script async src="https://kit.fontawesome.com/3cf23c1f27.js" crossorigin="anonymous"></script>
<!-- manifest.json to activate PWA-->
<!-- <link rel="manifest" href="/manifest.json"/> -->
<!-- needed for cesium -->
<link href="/build/Widgets/widgets.css" rel="stylesheet" />
<!-- load serviceworker (offline strategy) and activate browser native "install" option-->
<!-- <script async>if ('serviceWorker' in navigator) {navigator.serviceWorker.register('./serviceworker.js');}</script> -->
<!-- needed for cesium -->
<script async type='text/javascript'>
window.CESIUM_BASE_URL = '/build/';</script>
<!-- load main.ts -->
<script async type="module" src="/src/main.ts"></script>
</head>
<body style="margin:0px;">
<!-- root element-->
<div id="app"></div>
</body>
</html>