-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathabout.html
More file actions
466 lines (444 loc) · 24.9 KB
/
about.html
File metadata and controls
466 lines (444 loc) · 24.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Hydra Library</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon.png">
<link rel="shortcut icon" href="/favicon/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/favicon.png">
<meta name="msapplication-TileImage" content="/favicon/favicon.png">
<meta name="msapplication-TileColor" content="#10b981">
<meta name="theme-color" content="#10b981">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
.layout-container {
display: flex;
gap: 24px;
max-width: 1800px;
margin: 0 auto;
padding: 0 16px;
}
.sidebar {
width: 520px;
flex-shrink: 0;
position: sticky;
top: 100px;
height: fit-content;
}
.main-content {
flex: 1;
max-width: 800px;
}
.new-column {
width: 320px;
flex-shrink: 0;
position: sticky;
top: 100px;
height: fit-content;
}
@media (max-width: 1024px) {
.layout-container {
flex-direction: column;
}
.sidebar {
width: 100%;
position: static;
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TMMPJ1FL95"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TMMPJ1FL95');
</script>
</head>
<body class="bg-gradient-to-br from-gray-900 to-black min-h-screen flex flex-col text-gray-100">
<!-- Particles Background -->
<div id="particles-js" class="fixed inset-0 -z-10"></div>
<!-- Header -->
<header class="border-b border-white/5 backdrop-blur-sm bg-black/30 sticky top-0 z-50">
<div class="max-w-[1920px] mx-auto px-4 py-3">
<nav class="flex items-center justify-between">
<a href="./" class="flex items-center gap-2 hover:opacity-80 transition-opacity">
<i class="fas fa-book text-emerald-500 text-2xl"></i>
<h1 class="hidden sm:block text-lg md:text-xl font-medium" data-i18n="header.title">Hydra Library</h1>
</a>
<div class="flex items-center gap-2">
<!-- Language Switcher -->
<div class="relative">
<button id="language-switcher"
type="button"
class="px-3 py-2 rounded-lg bg-white/5 border border-white/10
text-white/70 hover:bg-white/10 transition-all duration-200
flex items-center gap-1.5 text-sm">
<i class="fas fa-globe"></i>
<span class="hidden sm:inline">English</span>
</button>
<div id="language-dropdown"
class="absolute top-full mt-1 z-[100] hidden
bg-[#111]/90 backdrop-blur-sm border border-white/5
rounded-lg overflow-hidden w-[120px] sm:w-200
shadow-lg shadow-black/50">
<button type="button"
class="w-full px-4 py-2 text-sm text-white/70 hover:bg-white/10
transition-all duration-200 text-left"
data-lang="en">
<span class="flex items-center gap-2">
<i class="fas fa-globe text-xs"></i>
<span>English</span>
</span>
</button>
<button type="button"
class="w-full px-4 py-2 text-sm text-white/70 hover:bg-white/10
transition-all duration-200 text-left"
data-lang="ru">
<span class="flex items-center gap-2">
<i class="fas fa-globe text-xs"></i>
<span>Русский</span>
</span>
</button>
<button type="button"
class="w-full px-4 py-2 text-sm text-white/70 hover:bg-white/10
transition-all duration-200 text-left"
data-lang="pt-br">
<span class="flex items-center gap-2">
<i class="fas fa-globe text-xs"></i>
<span>Português</span>
</span>
</button>
</div>
</div>
<a href="./"
class="px-3 md:px-4 py-2 rounded-lg bg-white/5 border border-white/10
text-white/70 hover:bg-white/10 transition-all duration-200
flex items-center gap-1.5 text-sm">
<i class="fas fa-home"></i>
<span data-i18n="about.navigation.home">Home</span>
</a>
</div>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="flex-1 py-6 mt-6">
<div class="layout-container">
<!-- Left Sidebar with Developer Info -->
<aside class="sidebar">
<!-- Developer Card -->
<div class="bg-black/20 backdrop-blur-sm rounded-xl border border-white/5 p-6 text-center mb-6">
<div class="w-24 h-24 rounded-xl bg-gradient-to-br from-emerald-500/20 to-emerald-500/5
border border-emerald-500/20 flex items-center justify-center mx-auto mb-4
transform hover:scale-105 transition-transform duration-300">
<i class="fas fa-code text-emerald-500 text-4xl"></i>
</div>
<h3 class="text-white font-medium text-lg mb-1">
<span class="text-emerald-500"><</span>
Moyase
<span class="text-emerald-500">/></span>
</h3>
<p class="text-white/50 text-sm mb-3">Developer & Designer</p>
<!-- Social Links -->
<div class="flex justify-center gap-4 mt-4">
<a href="https://github.com/moyasee" target="_blank" rel="noopener noreferrer"
class="w-10 h-10 rounded-lg bg-white/5 hover:bg-white/10 border border-white/10
flex items-center justify-center text-white/70 hover:text-white
transition-all duration-200 group pulse-on-hover">
<i class="fab fa-github text-lg group-hover:scale-110 transition-transform"></i>
</a>
<a href="https://linktr.ee/moyase" target="_blank" rel="noopener noreferrer"
class="w-10 h-10 rounded-lg bg-white/5 hover:bg-white/10 border border-white/10
flex items-center justify-center text-white/70 hover:text-white
transition-all duration-200 group pulse-on-hover">
<i class="fas fa-link text-lg group-hover:scale-110 transition-transform"></i>
</a>
<a href="https://discord.gg/hydralaunchercommunity" target="_blank" rel="noopener noreferrer"
class="w-10 h-10 rounded-lg bg-white/5 hover:bg-white/10 border border-white/10
flex items-center justify-center text-white/70 hover:text-white
transition-all duration-200 group pulse-on-hover">
<i class="fab fa-discord text-lg group-hover:scale-110 transition-transform"></i>
</a>
<a href="https://t.me/hydracommunityru" target="_blank" rel="noopener noreferrer"
class="w-10 h-10 rounded-lg bg-white/5 hover:bg-white/10 border border-white/10
flex items-center justify-center text-white/70 hover:text-white
transition-all duration-200 group pulse-on-hover">
<i class="fab fa-telegram text-lg group-hover:scale-110 transition-transform"></i>
</a>
</div>
<!-- About -->
<div class="mt-6 bg-black/20 rounded-xl border border-white/5 p-4">
<h4 class="text-white font-medium mb-3 flex items-center gap-2">
<i class="fas fa-user-circle text-emerald-500"></i>
<span data-i18n="about.developer.about.title">About</span>
</h4>
<p class="text-white/70 leading-relaxed text-sm" data-i18n="about.developer.about.description">
Developer and designer of Hydra Library, focused on creating safe and efficient
tools for the gaming community. Passionate about building user-friendly interfaces
and maintaining high security standards.
</p>
</div>
<!-- Projects -->
<div class="mt-4 bg-black/20 rounded-xl border border-white/5 p-4">
<h4 class="text-white font-medium mb-3 flex items-center gap-2">
<i class="fas fa-code-branch text-emerald-500"></i>
<span data-i18n="about.developer.projects.title">Projects</span>
</h4>
<div class="space-y-3">
<!-- Hydra Library Project -->
<div class="flex items-center gap-3 p-3 rounded-lg bg-black/20 border border-white/5
hover:border-emerald-500/20 transition-colors duration-200 mb-3
border-glow gradient-animate">
<div class="w-8 h-8 rounded-lg bg-emerald-500/10 border border-emerald-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-book text-emerald-500"></i>
</div>
<div class="flex-1">
<div class="flex items-center justify-between">
<div>
<h5 class="text-white font-medium" data-i18n="about.developer.projects.hydraLibrary.title">Hydra Library</h5>
<p class="text-emerald-400/70 text-sm" data-i18n="about.developer.projects.hydraLibrary.description">You are currently here</p>
</div>
</div>
</div>
</div>
<!-- Is It On Hydra Project -->
<div class="flex items-center gap-3 p-3 rounded-lg bg-black/20 border border-white/5
hover:border-emerald-500/20 transition-colors duration-200
border-glow gradient-animate">
<div class="w-8 h-8 rounded-lg bg-emerald-500/10 border border-emerald-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-rocket text-emerald-500"></i>
</div>
<div class="flex-1">
<div class="flex items-center justify-between">
<div>
<h5 class="text-white font-medium" data-i18n="about.developer.projects.isItOnHydra.title">Is It On Hydra</h5>
<p class="text-white/50 text-sm" data-i18n="about.developer.projects.isItOnHydra.description">Check if a game is available on Hydra Launcher</p>
</div>
<a href="https://isitonhydra.xyz" target="_blank" rel="noopener noreferrer"
class="px-3 py-1.5 rounded-lg bg-emerald-500/10 border border-emerald-500/20
text-emerald-400 text-sm hover:bg-emerald-500/20
transition-all duration-200 flex items-center gap-2">
<span data-i18n="about.developer.projects.isItOnHydra.action">Visit</span>
<i class="fas fa-external-link-alt text-xs"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</aside>
<!-- Main Content -->
<div class="main-content space-y-8">
<!-- Main content remains here -->
<!-- Statistics Section -->
<div class="bg-black/20 backdrop-blur-sm border border-white/5 rounded-xl p-8">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Total Sources - Left -->
<div class="flex items-center justify-center">
<div class="flex items-center gap-4 rounded-xl p-4 w-full
transition-all duration-300 hover:shadow-lg hover:shadow-emerald-500/20
hover:border-emerald-500/30 hover:-translate-y-1
hover:bg-black/30 border border-white/5">
<div class="w-12 h-12 rounded-xl bg-emerald-500/10 border border-emerald-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-database text-emerald-500 text-xl"></i>
</div>
<div>
<h3 class="text-2xl font-bold text-white" id="sourcesCount">0</h3>
<p class="text-white/50 text-sm" data-i18n="about.stats.sources">Total Sources</p>
</div>
</div>
</div>
<!-- Total Games - Center -->
<div class="flex items-center justify-center">
<div class="flex items-center gap-4 rounded-xl p-4 w-full
transition-all duration-300 hover:shadow-lg hover:shadow-emerald-500/20
hover:border-emerald-500/30 hover:-translate-y-1
hover:bg-black/30 border border-white/5">
<div class="w-12 h-12 rounded-xl bg-blue-500/10 border border-blue-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-gamepad text-blue-500 text-xl"></i>
</div>
<div>
<h3 class="text-2xl font-bold text-white" id="gamesCount">0</h3>
<p class="text-white/50 text-sm" data-i18n="about.stats.games">Total Games</p>
</div>
</div>
</div>
<!-- Total Actions - Right -->
<div class="flex items-center justify-center">
<div class="flex items-center gap-4 rounded-xl p-4 w-full
transition-all duration-300 hover:shadow-lg hover:shadow-emerald-500/20
hover:border-emerald-500/30 hover:-translate-y-1
hover:bg-black/30 border border-white/5">
<div class="w-12 h-12 rounded-xl bg-amber-500/10 border border-amber-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-download text-amber-500 text-xl"></i>
</div>
<div>
<h3 class="text-2xl font-bold text-white" id="actionsCount">0</h3>
<p class="text-white/50 text-sm" data-i18n="about.stats.actions">Total Installs & Copies</p>
</div>
</div>
</div>
</div>
</div>
<!-- Source Status Types -->
<div class="bg-black/20 backdrop-blur-sm border border-white/5 rounded-xl p-6">
<h2 class="text-xl font-semibold text-white mb-6" data-i18n="about.statusTypes.title">Source Status Types</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="flex items-start gap-3 p-4 rounded-lg bg-black/20 border border-white/5 border-glow">
<div class="w-8 h-8 rounded-lg bg-emerald-500/10 border border-emerald-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-shield-alt text-emerald-500"></i>
</div>
<div>
<h3 class="text-white font-medium mb-1" data-i18n="about.statusTypes.trusted.title">Trusted</h3>
<p class="text-white/60 text-sm" data-i18n="about.statusTypes.trusted.description">Verified sources that have been thoroughly checked for safety and reliability.</p>
</div>
</div>
<div class="flex items-start gap-3 p-4 rounded-lg bg-black/20 border border-white/5 border-glow">
<div class="w-8 h-8 rounded-lg bg-blue-500/10 border border-blue-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-shield-alt text-blue-500"></i>
</div>
<div>
<h3 class="text-white font-medium mb-1" data-i18n="about.statusTypes.safeForUse.title">Safe For Use</h3>
<p class="text-white/60 text-sm" data-i18n="about.statusTypes.safeForUse.description">Community-verified sources that are generally considered safe but should be used with normal precautions.</p>
</div>
</div>
<div class="flex items-start gap-3 p-4 rounded-lg bg-black/20 border border-white/5 border-glow">
<div class="w-8 h-8 rounded-lg bg-red-500/10 border border-red-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-exclamation-triangle text-red-500"></i>
</div>
<div>
<h3 class="text-white font-medium mb-1" data-i18n="about.statusTypes.useAtOwnRisk.title">Use At Your Own Risk</h3>
<p class="text-white/60 text-sm" data-i18n="about.statusTypes.useAtOwnRisk.description">Unverified sources that haven't been thoroughly checked. Exercise caution when using these sources.</p>
</div>
</div>
<div class="flex items-start gap-3 p-4 rounded-lg bg-black/20 border border-white/5 border-glow">
<div class="w-8 h-8 rounded-lg bg-amber-500/10 border border-amber-500/20
flex items-center justify-center shrink-0">
<i class="fas fa-star text-amber-500"></i>
</div>
<div>
<h3 class="text-white font-medium mb-1" data-i18n="about.statusTypes.new.title">New</h3>
<p class="text-white/60 text-sm" data-i18n="about.statusTypes.new.description">Recently added sources that are still being evaluated by the community.</p>
</div>
</div>
</div>
</div>
</main>
<script>
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
// Show success message
const toast = document.createElement('div');
toast.className = 'fixed bottom-4 right-4 bg-emerald-500/90 text-white px-4 py-2 rounded-lg text-sm';
toast.textContent = document.documentElement.lang === 'ru' ? 'Скопировано в буфер обмена!' :
document.documentElement.lang === 'pt-br' ? 'Copiado para a área de transferência!' :
'Copied to clipboard!';
document.body.appendChild(toast);
// Remove toast after 2 seconds
setTimeout(() => {
toast.remove();
}, 2000);
});
}
</script>
<script type="module" src="./js/about.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS("particles-js", {
particles: {
number: {
value: 100,
density: {
enable: true,
value_area: 800
}
},
color: {
value: "#10b981" // Emerald color to match your theme
},
shape: {
type: "circle"
},
opacity: {
value: 0.1,
random: true,
animation: {
enable: true,
speed: 1,
opacity_min: 0.05,
sync: false
}
},
size: {
value: 3,
random: true,
animation: {
enable: true,
speed: 2,
size_min: 0.1,
sync: false
}
},
line_linked: {
enable: true,
distance: 150,
color: "#10b981",
opacity: 0.1,
width: 1
},
move: {
enable: true,
speed: 1,
direction: "none",
random: true,
straight: false,
out_mode: "out",
bounce: false,
}
},
interactivity: {
detect_on: "canvas",
events: {
onhover: {
enable: true,
mode: "grab"
},
onclick: {
enable: true,
mode: "push"
},
resize: true
},
modes: {
grab: {
distance: 140,
line_linked: {
opacity: 0.3
}
},
push: {
particles_nb: 4
}
}
},
retina_detect: true
});
</script>
<script type='text/javascript' src='//bettydwarfcoincident.com/c3/dd/f4/c3ddf49b76d1794238277509594f9009.js'></script>
<script type='text/javascript' src='//bettydwarfcoincident.com/ea/39/e9/ea39e9c2c020a9ed11a3e578c1a25a9b.js'></script>
</body>
</html>