-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathindex.html
86 lines (82 loc) · 3.41 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
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="https://decentraland.org/images/icons/favicon-32x32.png" />
<meta
name="description"
content="Add your own 3D elements or choose from hundreds of pre-loaded items. Select, drag and drop them onto the canvas to create cool interactive scenes. No coding required, no design skills needed!"
/>
<meta property="og:title" content="Decentraland Builder—world creation made easy" />
<meta
property="og:description"
content="Add your own 3D elements or choose from hundreds of pre-loaded items. Select, drag and drop them onto the canvas to create cool interactive scenes. No coding required, no design skills needed!"
/>
<meta property="og:url" content="https://decentraland.org" />
<meta property="og:site_name" content="Decentraland Builder" />
<meta property="og:image" content="https://decentraland.org/images/logo.png" />
<meta name="twitter:title" content="Decentraland Builder—world creation made easy" />
<meta
name="twitter:description"
content="Add your own 3D elements or choose from hundreds of pre-loaded items. Select, drag and drop them onto the canvas to create cool interactive scenes. No coding required, no design skills needed!"
/>
<meta name="twitter:card" value="Decentraland Builder—world creation made easy" />
<meta name="twitter:site" content="@decentraland" />
<meta name="twitter:creator" content="@decentraland" />
<meta name="twitter:image" content="https://decentraland.org/images/logo.png" />
<meta itemprop="name" content="Decentraland Builder" />
<meta
itemprop="description"
content="Add your own 3D elements or choose from hundreds of pre-loaded items. Select, drag and drop them onto the canvas to create cool interactive scenes. No coding required, no design skills needed!"
/>
<meta itemprop="image" content="https://decentraland.org/images/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="%VITE_BASE_URL%/manifest.json" />
<style>
.loading-overlay {
overflow: hidden;
background: #19141a;
}
.loading-overlay:after {
content: '';
display: block;
width: 100px;
height: 100px;
margin: -50px -50px;
position: absolute;
top: 50%;
left: 50%;
background-image: url(https://market.decentraland.org/static/media/logo.a2f3cefb.svg);
background-repeat: no-repeat;
background-size: cover;
animation: loadingAnimation 3s infinite;
animation-delay: 2s;
opacity: 0;
}
@keyframes loadingAnimation {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
<title>Builder | Decentraland</title>
</head>
<body class="dcl-loading">
<div id="load-messages-wrapper"></div>
<div id="overlay"></div>
<div id="progress-bar" class="progress ingame">
<div class="full"></div>
</div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/node.ts"></script>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>