This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
260 lines (227 loc) · 10.5 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Umee Installer</title>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://install.umee.cc">
<meta property="og:type" content="website">
<meta property="og:title" content="UMEE Installer">
<meta property="og:description" content="Bash installer used to create a node on the Umee network">
<meta property="og:image" content="/screenshot.png">
<link rel="icon" type="image/png" href="/favicon.png" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<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=Prompt:ital,wght@0,300;1,400&display=swap" rel="stylesheet">
<link href="https://umee.cc/_nuxt/fonts/font.597355a.woff2" rel="stylesheet">
<style>
@keyframes build-in {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(155, 155, 155, 0.1);
border-radius: 20px;
border: transparent;
}
html {
background: rgb(22, 24, 60);
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
overflow-y: scroll;
}
body {
background: rgb(22, 24, 60);
animation: build-in 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
opacity: 0;
height: 100vh;
color: #fff;
font-family: 'SuisseInternational', sans-serif;
}
.build-in {
animation: build-in 1.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.command {
color: white;
padding: 15px 20px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, .95));
width: 100%;
font-size: 100%;
border-radius: 8px;
border: none;
transition: background-image .1s ease-out, border-color .1s ease-out;
}
.surround {
position: relative;
opacity: 0;
animation: build-in 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.surround:before {
content: '';
z-index: -1;
position: absolute;
opacity: .5;
top: -2px;
bottom: -2px;
left: -2px;
right: -2px;
padding: 2px;
border-radius: 8px;
background-image: linear-gradient(83.37deg, #fda9ff -9.48%, #c9b8ff 18.96%, #4dffe5 82.13%);
overflow: hidden;
transition: opacity .2s ease-out;
}
.surround:focus:before,
.surround:hover:before {
opacity: 1;
transition: opacity 0s ease-out;
}
a,
a:hover,
a:visited {
color: #fff;
}
input {
border-radius: 3px;
outline: none;
}
button {
color: #222 !important;
border: none !important;
border-radius: 50px !important;
padding: 1rem 5rem !important;
font-weight: bold;
background-image: linear-gradient(90deg, #fda9ff, #c9b8ff 14%, #4dffe5 50%);
background-size: 200% 50%;
transition: background-position 2s;
}
</style>
<script>
function copyToClipboard() {
var inputElement = document.getElementById('input-text');
inputElement.select();
document.execCommand('copy');
//alert("Copied to clipboard");
//TODO let user know.
}
</script>
</head>
<body>
<main>
<div class="px-4 py-5 my-5 text-center">
<span style="display: inline-block; height: 60px; width: 162px; margin-right: 1rem; vertical-align: middle;"
class="w-[130px] md:w-[162px]">
<a href="https://umee.cc" target="_blank" aria-current="page"
class="relative z-10 nuxt-link-exact-active nuxt-link-active" style="display: inline-block;">
<svg viewBox="0 0 579.8 150.3" xml:space="preserve">
<linearGradient id="grad1_324" gradientUnits="userSpaceOnUse" x1="-13.291" y1="106.327" x2="207.298"
y2="-9.019">
<stop offset="0" stop-color="#fda9ff"></stop>
<stop offset=".028" stop-color="#f9aaff"></stop>
<stop offset=".243" stop-color="#dcb3ff"></stop>
<stop offset=".367" stop-color="#d1b6ff"></stop>
<stop offset=".89" stop-color="#4dffe5"></stop>
</linearGradient>
<path
d="M.1 2.9v53.6-2.1c.4 45.8 38.8 84.9 86.3 84.9s85.9-37 86.3-82.8V2.9s-12-5.8-25.6 8.1c-8.7 8.9-15.7 41.1-34.4 41.3-25 .4-42-32.8-62.3-45.2C29.1-5.9.1 2.9.1 2.9z"
fill="url(#grad1_324)"></path>
<linearGradient id="grad2_324" gradientUnits="userSpaceOnUse" x1="76.719" y1="70.177" x2="99.452"
y2="-13.176">
<stop offset="0" stop-color="#16183c" stop-opacity=".3"></stop>
<stop offset=".867" stop-color="#16183c" stop-opacity="0"></stop>
</linearGradient>
<path
d="M.1 2.9v53.6-2.1c.4 45.8 38.8 84.9 86.3 84.9s85.9-37 86.3-82.8V2.9s-12-5.8-25.6 8.1c-8.7 8.9-15.7 41.1-34.4 41.3-25 .4-42-32.8-62.3-45.2C29.1-5.9.1 2.9.1 2.9z"
fill="url(#grad2_324)"></path>
<linearGradient id="grad3_324" gradientUnits="userSpaceOnUse" x1="-5.976" y1="112.594" x2="191.881"
y2="25.031">
<stop offset="0" stop-color="#fda9ff"></stop>
<stop offset=".028" stop-color="#f9aaff"></stop>
<stop offset=".243" stop-color="#dcb3ff"></stop>
<stop offset=".367" stop-color="#d1b6ff"></stop>
<stop offset=".89" stop-color="#4dffe5"></stop>
</linearGradient>
<path
d="M172.7 61.7V24.5c-4.9.8-10.9 3.2-17.2 9-9.8 9-17.6 41.5-38.6 41.8-28 .4-47.1-33.2-69.9-45.8-15.9-8.6-35.6-7.6-47-5.9v38.2-2.3c.4 49 38.9 90.8 86.3 90.8 47.5 0 86-39.6 86.4-88.6z"
fill="url(#grad3_324)"></path>
<linearGradient id="grad4_324" gradientUnits="userSpaceOnUse" x1="66.553" y1="93.575" x2="96.863"
y2="31.271">
<stop offset="0" stop-color="#16183c" stop-opacity=".3"></stop>
<stop offset=".867" stop-color="#16183c" stop-opacity="0"></stop>
</linearGradient>
<path
d="M172.7 61.7V24.5c-4.9.8-10.9 3.2-17.2 9-9.8 9-17.6 41.5-38.6 41.8-28 .4-47.1-33.2-69.9-45.8-15.9-8.6-35.6-7.6-47-5.9v38.2-2.3c.4 49 38.9 90.8 86.3 90.8 47.5 0 86-39.6 86.4-88.6z"
fill="url(#grad4_324)"></path>
<linearGradient id="grad5_324" gradientUnits="userSpaceOnUse" x1="-14.459" y1="125.184" x2="163.191"
y2="56.986">
<stop offset="0" stop-color="#fda9ff"></stop>
<stop offset=".028" stop-color="#f9aaff"></stop>
<stop offset=".243" stop-color="#dcb3ff"></stop>
<stop offset=".367" stop-color="#d1b6ff"></stop>
<stop offset=".89" stop-color="#4dffe5"></stop>
</linearGradient>
<path
d="M172.7 61.7v-8.5c-3.7 1.4-7.8 3.7-12 7.3-10.6 9-19 41.5-41.6 41.8-30.2.4-50.7-33.2-75.3-45.8-14.2-7.1-31.4-7.6-43.8-6.6v11.9-2.3c.4 49 38.9 90.8 86.3 90.8 47.5 0 86-39.6 86.4-88.6z"
fill="url(#grad5_324)"></path>
<path fill="currentColor"
d="M255.3 115.5c-1.7-3.1-3.3-9.1-3.7-13.5-5.2 9.7-14.8 15-25.3 15-13.1 0-20-8.2-20-23.2V62.3c0-6.9-.2-11.4-4.3-20.9 10.7-3.1 20.9-6.4 31.4-10.7v60c0 7.4 2 10.9 8.3 10.9 3 0 6.5-1 9.6-4.3V62.1c0-7.1-.4-14.3-2.8-21.3 10.4-2.8 19.6-6.1 30-10.7v61.5c0 8.1.6 14.3 4.1 23.9h-27.3zM419.1 115.5h-30c-1.8-6.9-2.4-19.5-2.4-28V57.2c0-8.4-2.8-10.9-8.3-10.9-3 0-6.7 1.2-9.8 4.8v36.1c0 8.9 1.5 19 5 28.4h-32.2V57.2c0-8.4-2.8-10.9-8.1-10.9-3.1 0-6.7 1.2-9.8 4.8v41.5c0 9.4.2 14.7 4.3 22.9h-35.7c3.9-8.2 4.3-13.5 4.3-22.9v-32c0-8.2-.2-12.4-4.3-19.8 8.9-3.3 18.1-6.8 26.8-10.5 2.4 4.5 4.3 10.7 4.6 16 5-10.1 14.8-15.5 25.1-15.5 11.1 0 17.6 5.8 19.4 16.5 5-10.5 15-16.5 25.9-16.5 12.9 0 20 8.2 20 23.2v33.1c0 9 1.3 19 5.2 28.4zM496.6 74.7h-47.3c2 13.8 8.7 22.4 27.9 22.4 8.5 0 13.9-1.6 19-3.8-1.7 9.9-12 24.4-33.8 24.4-23.5 0-40.1-17.1-40.1-42.9 0-24.7 14.6-44.2 40.1-44.2 20 0 34.2 14 34.2 38.4v5.7zM468.8 63c0-17.6-3.7-23.7-9.6-23.7-6.1 0-10.5 6.8-10.5 24.4 0 1.8 0 3.6.2 5.4h20V63zM579.8 74.7h-47.3c2 13.8 8.7 22.4 27.9 22.4 8.5 0 13.9-1.6 19-3.8-1.7 9.9-12 24.4-33.8 24.4-23.5 0-40.1-17.1-40.1-42.9 0-24.7 14.6-44.2 40.1-44.2 16.7 0 34.2 14 34.2 38.4v5.7zM552 63c0-17.6-3.7-23.7-9.6-23.7-6.1 0-10.5 6.8-10.5 24.4 0 1.8 0 3.6.2 5.4h20V63z">
</path>
</svg>
</a>
</span>
<h1 class="display-5 fw-bold" style="position: relative; display: inline-block; ">
Installer
</h1>
<p> </p>
<div class="build-in" class="row">
<div class="col col-sm-12 col-md-4 col-lg-5 mx-auto d-block">
<img height="272" src="screenshot.png" alt="Umee Installer" class="mx-auto d-block img-fluid"
style="height: 272px; ">
</div>
</div>
<p> </p>
<p> </p>
<div class="build-in col-lg-8 mx-auto">
<p class="lead mb-4" style="text-align: left;">
To install Umeed, run the following in your terminal, then follow the on-screen instructions:
</p>
<div class="surround mb-4">
<input type='text' class="command"
placeholder='curl -sL https://install.umee.cc/install.py > i.py && python3 i.py' id='input-text'
value="curl -sL https://install.umee.cc/install.py > i.py && python3 i.py">
</div>
<div class="d-grid gap-2 d-sm-flex mb-4">
<button type="button" class="btn btn-primary btn-lg px-4 gap-3" onClick="copyToClipboard()">Copy to
Clipboard</button>
</div>
</div>
<p> </p>
<div class="col-lg-12 mx-auto ">
<small class="mb-4">
<a title="Learn more at the Umeeversity!" href="https://umeeversity.umee.cc" target="_blank">UMEE
Documentation</a>
</small>
</div>
</div>
</main>
</body>
</html>