-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupportus.html
521 lines (452 loc) · 17.8 KB
/
supportus.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support Us - Gamedroid</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<style>
body,
html {
overflow: hidden;
height: 100%;
margin: 0;
padding: 0;
}
.support-container {
height: 100%;
width: 100%;
overflow-y: auto;
background-color: var(--glass-bg);
backdrop-filter: blur(10px);
padding: 20px;
box-sizing: border-box;
background-color: #333;
}
.support-section {
margin-bottom: 30px;
}
.section-title {
font-size: 20px;
font-weight: 500;
margin-bottom: 15px;
color: var(--primary-color);
text-align: center;
}
.section-subtitle {
font-size: 16px;
margin-bottom: 15px;
color: var(--secondary-color);
text-align: center;
}
.support-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-bottom: 20px;
}
.support-btn {
padding: 12px 20px;
background-color: var(--settings-item-bg);
border: 1px solid var(--glass-border);
border-radius: 10px;
color: var(--primary-color);
text-align: center;
cursor: pointer;
transition: background-color 0.2s, transform 0.2s;
display: flex;
align-items: center;
gap: 10px;
}
.support-btn:hover {
transform: translateY(-3px);
}
.donate-btn {
border-left: 4px solid #4caf50;
}
.github-btn {
border-left: 4px solid #333;
}
.discord-btn {
border-left: 4px solid #c50707;
}
.collaborate-cards {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
.collaborate-card {
background-color: var(--settings-item-bg);
border: 1px solid var(--glass-border);
border-radius: 10px;
padding: 20px;
width: 100%;
max-width: 280px;
text-align: center;
}
.collaborate-icon {
font-size: 36px;
margin-bottom: 15px;
color: var(--accent-color);
}
.collaborate-title {
font-size: 18px;
margin-bottom: 10px;
color: var(--primary-color);
}
.collaborate-text {
font-size: 14px;
color: var(--secondary-color);
margin-bottom: 15px;
}
.social-media {
display: flex;
justify-content: center;
gap: 20px;
margin: 20px 0;
}
.social-icon {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--settings-item-bg);
border: 1px solid var(--glass-border);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: var(--primary-color);
transition: transform 0.2s;
}
.social-icon:hover {
transform: scale(1.1);
}
.telegram-icon {
color: #0088cc;
}
.instagram-icon {
color: #e1306c;
}
.twitter-icon {
color: #1da1f2;
}
.report-buttons {
display: flex;
flex-direction: column;
gap: 10px;
}
.report-btn {
padding: 12px;
background-color: var(--settings-item-bg);
border: 1px solid var(--glass-border);
border-radius: 10px;
color: var(--primary-color);
text-align: center;
cursor: pointer;
transition: background-color 0.2s, transform 0.2s;
display: flex;
align-items: center;
gap: 10px;
}
.report-btn:hover {
transform: translateX(5px);
}
.bug-btn {
border-left: 4px solid #ff5252;
}
.feature-btn {
border-left: 4px solid #4caf50;
}
.reviews-container {
position: relative;
height: 180px;
overflow: hidden;
margin: 20px 0;
background-color: var(--settings-item-bg);
border: 1px solid var(--glass-border);
border-radius: 10px;
}
.reviews-slider {
position: absolute;
width: 100%;
animation: slide 30s linear infinite;
}
.review-card {
padding: 15px;
border-bottom: 1px solid var(--glass-border);
}
.review-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}
.review-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--accent-color);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
}
.review-name {
font-size: 16px;
color: var(--primary-color);
}
.review-stars {
color: #ffc107;
margin-left: auto;
}
.review-text {
font-size: 14px;
color: var(--secondary-color);
line-height: 1.4;
}
@keyframes slide {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-480px);
/* Adjusted based on the total height of review cards */
}
}
</style>
</head>
<body>
<div class="support-container">
<!-- Support This Project Section -->
<div class="support-section">
<div class="section-title">Support This Project</div>
<div class="section-subtitle">Help us continue development of Gamedroid</div>
<div class="support-buttons">
<div class="support-btn donate-btn">
<i class="fas fa-hand-holding-heart"></i>
Donate via PayPal
</div>
<div class="support-btn github-btn">
<i class="fab fa-github"></i>
Star on GitHub
</div>
<div class="support-btn discord-btn">
<i class="fab fa-instagram"></i>
Stay in loop
</div>
</div>
<p class="journey-text">Your support helps us to create more awesome games and improve the platform!</p>
</div>
<!-- Collaboration Section -->
<div class="support-section">
<div class="section-title">Collaborate With Us</div>
<div class="section-subtitle">Join our team and make Gamedroid even better</div>
<div class="collaborate-cards">
<div class="collaborate-card">
<div class="collaborate-icon">
<i class="fas fa-code"></i>
</div>
<div class="collaborate-title">Developers</div>
<div class="collaborate-text">Help us improve the codebase and add new features</div>
<div class="support-btn github-btn">
<i class="fab fa-github"></i>
Fork Repository
</div>
</div>
<!-- <div class="collaborate-card">
<div class="collaborate-icon">
<i class="fas fa-paint-brush"></i>
</div>
<div class="collaborate-title">Designers</div>
<div class="collaborate-text">Create beautiful UI elements and game assets</div>
<div class="support-btn">
<i class="fas fa-envelope"></i>
Contact Us
</div>
</div> -->
<div class="collaborate-card">
<div class="collaborate-icon">
<i class="fas fa-gamepad"></i>
</div>
<div class="collaborate-title">Game Creators</div>
<div class="collaborate-text">Submit your games to be featured on Gamedroid</div>
<div class="support-btn github-btn">
<i class="fab fa-github"></i>
Contribute in our project
</div>
</div>
</div>
</div>
<!-- Help Us Improve Section -->
<div class="support-section">
<div class="section-title">No Money or Skills? You Still Can Help!</div>
<div class="section-subtitle">Your feedback is crucial for our improvement</div>
<div class="report-buttons">
<div class="report-btn bug-btn">
<i class="fas fa-bug"></i>
<div>
<div>Report a Bug</div>
<small>Help us fix issues you encounter</small>
</div>
</div>
<div class="report-btn feature-btn">
<i class="fas fa-lightbulb"></i>
<div>
<div>Request a Feature</div>
<small>Tell us what would make Gamedroid better</small>
</div>
</div>
</div>
</div>
<!-- Social Media Section -->
<div class="support-section">
<div class="section-title">Follow Our Journey</div>
<div class="section-subtitle">Stay updated with latest features and development workflow</div>
<div class="social-media">
<a href="#" class="social-icon telegram-icon">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="#" class="social-icon instagram-icon">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="social-icon twitter-icon">
<i class="fab fa-twitter"></i>
</a>
</div>
<p class="journey-text">Join our community to get early access to updates and exclusive features!</p>
</div>
<!-- Reviews Section -->
<div class="support-section">
<div class="section-title">What People Are Saying</div>
<div class="reviews-container">
<div class="reviews-slider">
<div class="review-card">
<div class="review-header">
<div class="review-avatar">JD</div>
<div class="review-name">John Doe</div>
<div class="review-stars">★★★★★</div>
</div>
<div class="review-text">
Gamedroid is amazing! I love how smoothly the games run and the interface is so intuitive.
Can't wait for more games!
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="review-avatar">AS</div>
<div class="review-name">Amy Smith</div>
<div class="review-stars">★★★★★</div>
</div>
<div class="review-text">
This is the best web-based gaming platform I've ever used. The UI feels just like my phone
and games load super fast!
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="review-avatar">MJ</div>
<div class="review-name">Mike Johnson</div>
<div class="review-stars">★★★★☆</div>
</div>
<div class="review-text">
Cosmic Dash is addictive! I've been playing for hours. Would love to see more levels added
in the future.
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="review-avatar">LW</div>
<div class="review-name">Lisa Wong</div>
<div class="review-stars">★★★★★</div>
</div>
<div class="review-text">
The customization options are fantastic! I can make Gamedroid look exactly how I want.
Brilliant work by the developers.
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="review-avatar">RB</div>
<div class="review-name">Robert Brown</div>
<div class="review-stars">★★★★☆</div>
</div>
<div class="review-text">
X-Ray Orb has the best graphics I've seen in a browser game. Super responsive controls too!
</div>
</div>
<!-- Repeat first reviews to create seamless loop -->
<div class="review-card">
<div class="review-header">
<div class="review-avatar">JD</div>
<div class="review-name">John Doe</div>
<div class="review-stars">★★★★★</div>
</div>
<div class="review-text">
Gamedroid is amazing! I love how smoothly the games run and the interface is so intuitive.
Can't wait for more games!
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="review-avatar">AS</div>
<div class="review-name">Amy Smith</div>
<div class="review-stars">★★★★★</div>
</div>
<div class="review-text">
This is the best web-based gaming platform I've ever used. The UI feels just like my phone
and games load super fast!
</div>
</div>
</div>
</div>
</div>
<div class="support-section" style="text-align: center;">
<p>Thank you for supporting Gamedroid!</p>
<p style="font-size: 12px; margin-top: 10px; color: var(--secondary-color);">
©2025 Gamedroid Team. All rights reserved.
</p>
</div>
</div>
<script>
// Initialize review animation
const reviewsSlider = document.querySelector('.reviews-slider');
// Pause animation on hover
document.querySelector('.reviews-container').addEventListener('mouseenter', () => {
reviewsSlider.style.animationPlayState = 'paused';
});
document.querySelector('.reviews-container').addEventListener('mouseleave', () => {
reviewsSlider.style.animationPlayState = 'running';
});
// Handle button clicks
document.querySelector('.donate-btn').addEventListener('click', () => {
alert('Thank you for your interest in donating! This would redirect to our payment page.');
});
document.querySelector('.github-btn').addEventListener('click', () => {
alert('Thank you for your interest in our GitHub repository! This would redirect to our GitHub page.');
});
document.querySelector('.discord-btn').addEventListener('click', () => {
alert('Thank you for your interest in our Discord community! This would redirect to our Discord server.');
});
document.querySelector('.bug-btn').addEventListener('click', () => {
alert('Thank you for reporting a bug! This would open a bug report form.');
});
document.querySelector('.feature-btn').addEventListener('click', () => {
alert('Thank you for suggesting a feature! This would open a feature request form.');
});
// Social media links
const socialLinks = document.querySelectorAll('.social-icon');
socialLinks.forEach(link => {
link.addEventListener('click', (e) => {
e.preventDefault();
const platform = e.currentTarget.classList.contains('telegram-icon') ? 'Telegram' :
e.currentTarget.classList.contains('instagram-icon') ? 'Instagram' : 'Twitter';
alert(`Thank you for your interest in our ${platform} page! This would redirect to our ${platform} profile.`);
});
});
</script>
</body>
</html>