-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
562 lines (510 loc) · 16.4 KB
/
welcome.html
File metadata and controls
562 lines (510 loc) · 16.4 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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyCoin - The easiest way to receive cryptocurrency</title>
<meta name="description" content="TemplateMo provides 600+ free HTML CSS website templates for everyone since 2008.">
<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=Outfit:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="templatemo-glass-admin-style.css">
<!--
TemplateMo 607 Glass Admin
https://templatemo.com/tm-607-glass-admin
-->
<style>
/* About Page Specific Styles */
.about-page {
min-height: 100vh;
padding: 0;
}
.about-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
position: sticky;
top: 0;
z-index: 100;
}
.about-logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 22px;
font-weight: 600;
color: var(--text-primary);
}
.about-logo-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--emerald), var(--gold));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 18px;
}
.about-nav {
display: flex;
align-items: center;
gap: 15px;
}
.about-container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 30px;
}
/* Hero Section */
.about-hero {
text-align: center;
margin-bottom: 60px;
}
.about-hero h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--emerald-light), var(--gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.about-hero p {
font-size: 18px;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}
/* Stats Grid */
.about-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-bottom: 60px;
}
.about-stat {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 30px;
text-align: center;
transition: all var(--transition-normal);
}
.about-stat:hover {
background: var(--glass-hover);
transform: translateY(-5px);
}
.about-stat-value {
font-family: 'Space Mono', monospace;
font-size: 36px;
font-weight: 700;
color: var(--emerald-light);
margin-bottom: 8px;
}
.about-stat-label {
font-size: 14px;
color: var(--text-muted);
}
/* Features Grid */
.section-title {
font-size: 32px;
font-weight: 600;
text-align: center;
margin-bottom: 40px;
color: var(--text-primary);
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 60px;
}
.feature-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 30px;
text-align: center;
transition: all var(--transition-normal);
}
.feature-card:hover {
background: var(--glass-hover);
transform: translateY(-5px);
border-color: var(--emerald-light);
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(212, 165, 116, 0.1));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.feature-icon svg {
width: 28px;
height: 28px;
color: var(--emerald-light);
}
.feature-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: var(--text-primary);
}
.feature-card p {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.6;
}
/* Templates Grid */
.templates-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 60px;
}
.template-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 16px;
overflow: hidden;
transition: all var(--transition-normal);
text-decoration: none;
color: inherit;
display: block;
}
.template-card:hover {
background: var(--glass-hover);
transform: translateY(-5px);
border-color: var(--emerald-light);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.template-thumb {
width: 100%;
height: 240px;
object-fit: cover;
object-position: top;
border-bottom: 1px solid var(--glass-border);
}
.template-info {
padding: 20px;
}
.template-info h3 {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-primary);
}
.template-info p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* CTA Section */
.cta-section {
background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(212, 165, 116, 0.15));
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 50px;
text-align: center;
margin-bottom: 40px;
}
.cta-section h2 {
font-size: 28px;
font-weight: 600;
margin-bottom: 15px;
color: var(--text-primary);
}
.cta-section p {
font-size: 16px;
color: var(--text-secondary);
margin-bottom: 30px;
}
.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.cta-buttons .btn {
padding: 14px 28px;
}
.btn-secondary {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
color: var(--text-primary);
}
.btn-secondary:hover {
background: var(--glass-hover);
border-color: var(--emerald-light);
}
/* About Footer */
.about-footer {
text-align: center;
padding: 30px;
color: var(--text-muted);
font-size: 14px;
border-top: 1px solid var(--glass-border);
}
.about-footer a {
color: var(--emerald-light);
}
.about-footer a:hover {
color: var(--gold);
}
/* Responsive */
@media (max-width: 992px) {
.about-stats {
grid-template-columns: repeat(2, 1fr);
}
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
.templates-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-hero h1 {
font-size: 36px;
}
}
@media (max-width: 768px) {
.about-header {
padding: 15px 20px;
}
.about-container {
padding: 40px 20px;
}
.about-stats {
grid-template-columns: 1fr 1fr;
}
.features-grid {
grid-template-columns: 1fr;
}
.templates-grid {
grid-template-columns: 1fr;
}
.about-hero h1 {
font-size: 28px;
}
.about-hero p {
font-size: 16px;
}
.cta-section {
padding: 30px 20px;
}
.cta-buttons {
flex-direction: column;
}
.cta-buttons .btn {
width: 100%;
}
}
@media (max-width: 480px) {
.about-stats {
grid-template-columns: 1fr;
}
.about-stat-value {
font-size: 28px;
}
}
</style>
</head>
<body>
<!-- Animated Background -->
<div class="background"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="about-page">
<!-- Header -->
<header class="about-header">
<a href="#" rel="nofollow" class="about-logo">
<!--<div class="about-logo-icon">TM</div>-->
<img src="assets/logo.svg" height=40 width=40>
EasyCoin
</a>
<div class="about-nav">
<button class="nav-btn" id="theme-toggle" title="Toggle Light/Dark Mode">
<svg class="icon-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="4"/><path d="M12 2v2"/><path d="M12 20v2"/>
<path d="M4.93 4.93l1.41 1.41"/><path d="M17.66 17.66l1.41 1.41"/>
<path d="M2 12h2"/><path d="M20 12h2"/>
<path d="M6.34 17.66l-1.41 1.41"/><path d="M19.07 4.93l-1.41 1.41"/>
</svg>
<svg class="icon-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="display: none;">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
<a href="register.html" class="btn btn-primary" style="padding: 10px 20px;">Enter a claim code</a>
</div>
</header>
<!-- Main Content -->
<div class="about-container">
<!-- Hero Section -->
<section class="about-hero">
<h1>The easiest way to receive cryptocurrency</h1>
<p>EasyCoin has been providing Bitcoin ATMs with revolutionary services since 2017. We process your funds with QuantumCoin™ Express, our revolutionary money transfer technique that was voted the best technological innovation of 2023. Millions of users are very happy with our service.</p>
</section>
<!-- Stats -->
<section class="about-stats">
<div class="about-stat">
<div class="about-stat-value">80,000+</div>
<div class="about-stat-label">Active Bitcoin ATMs</div>
</div>
<div class="about-stat">
<div class="about-stat-value">300+</div>
<div class="about-stat-label">Well-Known Sponsors</div>
</div>
<div class="about-stat">
<div class="about-stat-value">92%</div>
<div class="about-stat-label">Satisfaction Rate</div>
</div>
<div class="about-stat">
<div class="about-stat-value">2,000+</div>
<div class="about-stat-label">Customer Support Agents</div>
</div>
</section>
<!-- Features -->
<h2 class="section-title">Why Choose EasyCoin?</h2>
<section class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/>
</svg>
</div>
<h3>Multichain Support</h3>
<p>EasyCoin is fully compatible with the Multichain network, allowing you to securely send money to anyone you want!</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="5" y="2" width="14" height="20" rx="2"/><line x1="12" y1="18" x2="12" y2="18"/>
</svg>
</div>
<h3>Instant Receipts</h3>
<p>You'll get your receipt as soon as you confirm the transfer - even if the transfer fails.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/>
</svg>
</div>
<h3>No Annoying Downloads</h3>
<p>No more downloading your funds and keeping track of local files! All your funds are stored securely on the blockchain.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/>
</svg>
</div>
<h3>Quantum-Proof Security</h3>
<p>We use MLKEM-1024 and SHA3-256, ensuring no one else can access your funds.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/>
</svg>
</div>
<h3>Easy to Use</h3>
<p>We're called EasyCoin for a reason! Countless studies have shown that over 80% of crypto users prefer our service over all the alternatives.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/>
</svg>
</div>
<h3>Fast Processing</h3>
<p>With our amazing QuantumCoin™ technology, we'll process your deposit in as little as 5 minutes.</p>
</div>
</section>
<!-- Latest Templates -->
<!--
<h2 class="section-title">Latest Templates</h2>
<section class="templates-grid">
<a href="https://templatemo.com/tm-606-string-master" target="_blank" rel="nofollow" class="template-card">
<img src="https://templatemo.com/thumbnails-360/tm-606-string-master.jpg" alt="String Master Template" class="template-thumb">
<div class="template-info">
<h3>606 String Master</h3>
<p>A modern, interactive guitar learning platform template designed for music educators and online instructors.</p>
</div>
</a>
<a href="https://templatemo.com/tm-605-xmas-countdown" target="_blank" rel="nofollow" class="template-card">
<img src="https://templatemo.com/thumbnails-360/tm-605-xmas-countdown.jpg" alt="Xmas Countdown Template" class="template-thumb">
<div class="template-info">
<h3>605 Xmas Countdown</h3>
<p>A modern Christmas countdown template featuring sleek glassmorphism design with dark tech aesthetic.</p>
</div>
</a>
<a href="https://templatemo.com/tm-604-christmas-piano" target="_blank" rel="nofollow" class="template-card">
<img src="https://templatemo.com/thumbnails-360/tm-604-christmas-piano.jpg" alt="Christmas Piano Template" class="template-thumb">
<div class="template-info">
<h3>604 Christmas Piano</h3>
<p>A festive single-page template featuring an interactive mini piano player built with Web Audio API.</p>
</div>
</a>
<a href="https://templatemo.com/tm-603-nexaverse" target="_blank" rel="nofollow" class="template-card">
<img src="https://templatemo.com/thumbnails-360/tm-603-nexaverse.jpg" alt="Nexaverse Template" class="template-thumb">
<div class="template-info">
<h3>603 Nexaverse</h3>
<p>A stunning dark glassmorphism template for digital agencies, tech startups, and creative professionals.</p>
</div>
</a>
<a href="https://templatemo.com/tm-602-graph-page" target="_blank" rel="nofollow" class="template-card">
<img src="https://templatemo.com/thumbnails-360/tm-602-graph-page.jpg" alt="Graph Page Template" class="template-thumb">
<div class="template-info">
<h3>602 Graph Page</h3>
<p>A dynamic one-page HTML design built for data analytics platforms and business intelligence tools.</p>
</div>
</a>
<a href="https://templatemo.com/tm-601-chain-summit" target="_blank" rel="nofollow" class="template-card">
<img src="https://templatemo.com/thumbnails-360/tm-601-chain-summit.jpg" alt="Chain Summit Template" class="template-thumb">
<div class="template-info">
<h3>601 Chain Summit</h3>
<p>A sleek HTML template designed for AI, Blockchain, and cutting-edge tech conferences.</p>
</div>
</a>
</section>
-->
<!-- CTA Section -->
<section class="cta-section">
<h2>Get Started with EasyCoin Today</h2>
<p>Create an account and start experiencing the latest innovations in crypto technology.</p>
<div class="cta-buttons">
<a href="register.html" rel="nofollow" class="btn btn-primary">Create an account</a>
<a href="#" rel="nofollow" class="btn btn-secondary">I already have an account</a>
</div>
</section>
</div>
<!-- Footer -->
<footer class="about-footer">
<p>Copyright © 2026 EasyCoin - Unrivaled Crypto Services Since 2017</p>
</footer>
</div>
<script src="templatemo-glass-admin-script.js"></script>
<!-- TemplateMo 607 Glass Admin -->
</body>
</html>