-
Notifications
You must be signed in to change notification settings - Fork 1
/
vi.html
898 lines (809 loc) · 28.4 KB
/
vi.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
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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech-Art Cloud Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" href="/assets/images/logo/favicon.ico" type="image/x-icon">
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
<meta property="og:title" content="Trang chủ Tech-Art Cloud">
<meta property="og:description" content="Một nền tảng đám mây mới cung cấp cơ sở hạ tầng có khả năng mở rộng và các công cụ phát triển để xây dựng và nâng cao các dịch vụ và ứng dụng kỹ thuật số.">
<meta property="og:image" content="https://cloud.xyehr.cn/assets/images/logo/Tech-Art-Cloud-Logo.png">
<script>
document.addEventListener('DOMContentLoaded', function() {
loadNews();
});
function loadNews() {
fetch('posts/posts_vi.json')
.then(response => response.json())
.then(articles => {
const newsGrid = document.getElementById('newsGrid');
articles.forEach(article => {
const card = createNewsCard(article);
newsGrid.appendChild(card);
});
})
.catch(error => console.error('Error loading news:', error));
}
function createNewsCard(article) {
const card = document.createElement('div');
card.className = 'news-card';
card.innerHTML = `
<img src="${article.image}" alt="${article.title}">
<div class="news-card-content">
<h3>${article.title}</h3>
<p>${article.preview}</p>
</div>
`;
return card;
}
</script>
<style>
@import url('/assets/font/open-sans.css');
@font-face {
font-family: 'ECA-M';
src: url('assets/font/ECA-Medium.ttf') format('truetype');
}
@font-face {
font-family: 'ECA-L';
src: url('assets/font/ECA-Light.ttf') format('truetype');
}
body {
margin: 0;
padding: 0;
font-family: "ECA-L", "Open Sans", sans-serif;
color: #000;
background-color: #fff;
}
.captcha-container {
text-align: center;
background-color: #fff;
position: fixed;
padding: 220px 0;
top: 0;
left: 0;
width: 100%;
height: 200vh;
z-index: 1000;
}
.hidden {
display: none;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 65px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
height: 54px;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 44px;
margin-right: 10px;
}
.logo span {
font-size: 18px;
font-weight: 600;
color: #222224;
}
.nav {
display: flex;
align-items: center;
height: 100%;
margin-left: auto;
}
.nav a, .nav .dropdown {
color: #000;
text-decoration: none;
font-size: 13px;
padding: 0 10px;
height: 100%;
display: flex;
align-items: center;
margin-left: 20px;
}
.dropdown {
position: relative;
cursor: pointer;
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #fff;
min-width: 200px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
z-index: 1;
padding: 10px 0;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
padding: 10px 20px;
display: block;
color: #222224;
text-decoration: none;
}
.dropdown-content a:hover {
background-color: #f0f0f0;
}
.search-icon {
margin-left: 10px;
font-size: 16px;
color: #222224;
}
.hero {
background: url('assets/images/banner.png') no-repeat center center;
background-size: cover;
padding: 80px 65px;
display: flex;
align-items: center;
}
.hero-content {
max-width: 600px;
}
.hero h1 {
font-size: 46px;
margin-bottom: 20px;
font-weight: bold;
color: #222224;
}
.hero p {
font-size: 18px;
margin-bottom: 30px;
color: #222224;
font-family: "ECA-L";
}
.hero-buttons {
display: flex;
gap: 15px;
}
.btn {
display: inline-block;
padding: 12px 24px;
border-radius: 12px;
font-size: 16px;
font-weight: bold;
text-decoration: none;
transition: background-color 0.3s;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.1)
}
.btn-1 {
background-color: #0066ff;
color: #fff;
}
.btn-2 {
background-color: #fff;
color: #222224;
border: 1px solid #0066ff;
}
.btn:hover {
filter: brightness(0.9);
transition: filter 0.3s ease;
}
.features {
display: flex;
justify-content: space-between;
padding: 40px 65px;
background-color: #fff;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.why-tech-art {
background-color: #fff;
color: 222224;
padding: 50px 20px;
}
.container2 {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.section-title2 {
font-size: 28px;
margin-bottom: 20px;
color: #222224;
}
.features2 {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.feature-item {
max-width: 300px;
margin: 20px;
text-align: left;
}
.feature-icon {
width: 50px;
height: 50px;
}
.feature-title {
font-size: 1.5em;
margin-top: 10px;
}
.feature-description {
font-size: 1em;
margin-top: 10px;
}
.feature-card {
flex: 1;
padding: 20px;
background-color: #fff;
border-radius: 23px;
margin: 0 10px;
box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.feature-card-icon {
width: 39px;
height: 39px;
}
.feature-card h3 {
font-size: 20px;
margin-bottom: 15px;
color: #333;
}
.feature-card p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
}
.feature-link {
color: #4285f4;
text-decoration: none;
font-weight: bold;
font-size: 14px;
}
.feature-link, .product-card a, .step-card a {
position: relative;
text-decoration: none;
}
.feature-link::after, .product-card a::after, .step-card a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #0066ff;
transition: width 0.3s ease;
}
.feature-link:hover::after, .product-card a:hover::after, .step-card a:hover::after {
width: 100%;
}
@media screen and (max-width: 768px) {
.hero {
padding: 60px 20px;
}
.features {
flex-direction: column;
padding: 20px;
}
.feature-card {
margin: 10px 0;
}
}
.content {
padding: 40px 20px;
background-color: #fff;
}
.section-title {
font-size: 28px;
margin-bottom: 20px;
color: #333;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.product-card {
background-color: #fff;
/*border: 1px solid #e0e0e0;*/
border-radius: 20px;
padding: 20px;
transition: box-shadow 0.3s;
box-shadow: 0 0 8px rgba(0,0,0,0.1)
}
.product-card i {
font-size: 36px;
margin-bottom: 10px;
color: #0066ff;
}
.product-card h3 {
font-size: 20px;
margin-bottom: 15px;
color: #333;
}
.product-card p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
}
.product-card a {
color: #0066ff;
text-decoration: none;
font-weight: bold;
font-size: 14px;
}
.next-steps {
background-color: #fff;
padding: 40px 20px;
}
.next-step h2 {
text-align: center;
}
.step-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.step-card {
background-color: #fff;
border: 1px solid #e0e0e0;
border-radius: 20px;
padding: 20px;
transition: box-shadow 0.3s;
text-alight: center;
}
.step-card i {
font-size: 48px;
margin-bottom: 20px;
color: #0066ff;
}
.step-card h3 {
font-size: 18px;
margin-bottom: 10px;
color: #333;
}
.step-card p {
font-size: 14px;
color: #666;
}
.step-card a {
color: #0066ff;
text-decoration: none;
font-size: 14px;
font-weight: bold;
}
footer {
background-color: #f2f2f2;
color: #6c6c6c;
padding: 40px 20px;
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
.footer-links a {
color: #2c2c2c;
text-decoration: none;
margin: 0 10px;
font-size: 14px;
}
.footer-text {
font-size: 12px;
opacity: 0.8;
}
.featured-product {
display: flex;
background: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
border-radius: 20px;
overflow: hidden;
margin-bottom: 40px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.featured-product-content {
flex: 1;
padding: 40px;
color: #fff;
}
.featured-product-content h3 {
font-size: 28px;
margin-bottom: 16px;
}
.featured-product-content p {
font-size: 18px;
margin-bottom: 24px;
}
.featured-product-content .btn {
background-color: #fff;
color: #000;
}
.featured-product-content .btn:hover {
background-color: #f0f0f0;
}
.featured-product-image {
flex: 1;
background-image: url('');
background-size: cover;
background-position: center;
}
.product-grid {
margin-top: 40px;
}
.news-section {
padding: 40px 20px;
background-color: #fff;
}
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.news-card {
background-color: #fff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.news-card img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}
.news-card-content {
padding: 20px;
}
.news-card h3 {
font-size: 18px;
margin-bottom: 10px;
}
.news-card p {
font-size: 14px;
color: #666;
}
.mobile-nav {
display: none;
}
.search-icon {
display: none;
}
.mobile-menu {
display: none;
}
.product-card, .feature-card, .step-card, .news-card {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.product-card.show, .feature-card.show, .step-card.show, .news-card.show {
opacity: 1;
transform: translateY(0);
}
@media screen and (max-width: 768px) {
.search-icon, .hamburger-icon, {
display: block;
}
}
@media screen and (max-width: 768px) {
.header {
padding: 0 20px;
}
.nav {
display: none;
}
.mobile-nav {
display: flex;
align-items: center;
}
.search-icon, .hamburger-icon {
font-size: 24px;
color: #222224;
margin-left: 15px;
}
.hamburger-icon {
display: block;
cursor: pointer;
}
.hamburger-icon.active i::before {
content: "\f00d"; /* fa-times */
}
.mobile-menu .contacts-btn {
display: block;
width: 90px;
padding: 10px;
border: 1px solid gray;
border-radius: 12px;
text-align: center;
color: #5c5c5c;
text-decoration: none;
font-size: 16px;
margin-top: 10px;
}
.hero-buttons {
flex-direction: column;
align-items: flex-start;
}
.mobile-menu {
display: none;
position: fixed;
top: 54px;
left: 0;
right: 0;
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
border-radius: 0 0 30px 30px;
}
.mobile-menu.active {
display: block;
}
.mobile-menu a {
display: block;
padding: 10px 0;
color: #000;
text-decoration: none;
font-size: 16px;
}
.hero {
background: url('assets/images/banner.png') no-repeat center center;
background-size: cover;
padding: 80px 20px;
height: 400px;
}
.hero h1 {
font-size: 32px;
}
.hero p {
font-size: 16px;
}
.featured-product {
flex-direction: column;
}
.featured-product-image {
height: 200px;
}
}
</style>
</head>
<body>
<!--<div id="captcha-container" class="captcha-container">
<img src="assets/images/logo/Tech-Art-Cloud-Logo.png" width="84" margin-buttom="20px">
<div class="cf-turnstile" data-sitekey="0x4AAAAAAAfuEfC_OCoYQaNL" data-callback="onTurnstileSuccess"></div>
</div>-->
<div id="original-content" class="">
<header class="header">
<div class="logo">
<img src="assets/images/logo/Tech-Art-Cloud-Logo.png">
<span>Tech-Art | Cloud</span>
</div>
<nav class="nav">
<div class="dropdown">
<span>Duyệt</span>
<div class="dropdown-content">
<a href="#">Tìm hiểu về dịch vụ đám mây</a>
</div>
</div>
<div class="dropdown">
<span>Sản phẩm</span>
<div class="dropdown-content">
<a href="#">Xem tất cả sản phẩm (5+)</a>
<a href="">One Translate</a>
<a href="https://captcha.xyehr.cn/demo/v3-db">One Captcha</a>
<a href="https://pass.xyehr.cn">One Pass Box</a>
</div>
</div>
<a href="https://help.xyehr.cn">Giúp đỡ</a>
<a href="mailto:[email protected]">Liên hệ hỗ trợ</a>
</nav>
<div class="mobile-nav">
<a href="#" class="search-icon"><i class="fas fa-search"></i></a>
<div class="hamburger-icon"><i class="fas fa-bars"></i></div>
</div>
</header>
<div class="mobile-menu">
<a href="#">Duyệt</a>
<a href="#">Sản phẩm</a>
<a href="help.xyehr.cn">Giúp đỡ</a>
<a href="mailto:[email protected]">Liên hệ hỗ trợ</a>
<a href="#" class="contacts-btn">Liên hệ</a>
</div>
<section class="hero">
<div class="hero-content">
<h1>Tech-Art Cloud</h1>
<p>Một nền tảng đám mây mới cung cấp cơ sở hạ tầng có khả năng mở rộng và các công cụ phát triển để xây dựng và nâng cao các dịch vụ và ứng dụng kỹ thuật số.</p>
<p>Được phát triển bởi Tech-Art, một trong những nhóm về công nghệ sản xuất sản phẩm và dịch vụ thông minh.</p>
<div class="hero-buttons">
<a href="#" class="btn btn-1">Khám phá dịch vụ của chúng tôi</a>
<a href="#" class="btn btn-2">Tham gia cùng chúng tôi</a>
</div>
</div>
</section>
<section class="features">
<div class="feature-card">
<img src="assets/images/icon/square-dashed.svg" alt="Icon 1" class="feature-card-icon">
<h3>Điện toán không máy chủ</h3>
<p>Cho phép tăng trưởng nhanh chóng và hoạt động hiệu quả mà không cần bảo trì máy chủ</p>
</div>
<div class="feature-card">
<img src="assets/images/icon/cubes.svg" alt="Icon 2" class="feature-card-icon">
<h3>Nhiều dịch vụ</h3>
<p>5+ dịch vụ và sản phẩm đang chạy</p>
</div>
<div class="feature-card">
<img src="assets/images/icon/terminal-line.svg" alt="Icon 3" class="feature-card-icon">
<h3>Công cụ dành cho nhà phát triển</h3>
<p>Công cụ để thử nghiệm dự án</p>
</div>
<div class="feature-card">
<img src="assets/images/icon/lock.svg" alt="Icon 4" class="feature-card-icon">
<h3>Bảo vệ</h3>
<p>Công cụ quản lý bảo mật dự án</p>
</div>
<div class="feature-card">
<img src="assets/images/icon/briefcase.svg" alt="Icon 4" class="feature-card-icon">
<h3>Công cụ kinh doanh</h3>
<p>Công cụ để hình dung tổ chức và khách hàng của bạn</p>
</div>
<div class="feature-card">
<img src="assets/images/icon/flag2.svg" alt="Icon 4" class="feature-card-icon">
<h3>Sự đổi mới</h3>
<p>Chúng tôi đổi mới và phát triển các tính năng và dịch vụ mới</p>
</div>
</section>
<section class="why-tech-art">
<div class="container2">
<h3 class="section-title2">Tại sao Tech-Art</h3>
<div class="features2">
<div class="feature-item">
<img src="assets/images/icon/support.svg" alt="Icon 1" class="feature-icon">
<h3 class="feature-title">Hiệu suất cao</h3>
<p class="feature-description">Tech-Art đảm bảo thời gian phản hồi nhanh chóng và trải nghiệm liền mạch cho người dùng, cung cấp các giải pháp với tốc độ và hiệu quả vô song.</p>
</div>
<div class="feature-item">
<img src="assets/images/icon/economy.svg" alt="Icon 2" class="feature-icon">
<h3 class="feature-title">Hiệu quả & Đổi mới</h3>
<p class="feature-description">Tech-Art cung cấp các giải pháp không cần máy chủ để sử dụng nhanh chóng và khả năng mở rộng. Phương pháp của chúng tôi loại bỏ việc bảo trì máy chủ truyền thống và cung cấp các dịch vụ hiệu quả và đáng tin cậy.</p>
</div>
<div class="feature-item">
<img src="assets/images/icon/locked-cloud.svg" alt="Icon 3" class="feature-icon">
<h3 class="feature-title">Bảo mật & Quyền riêng tư</h3>
<p class="feature-description">Nền tảng Tech-Art Cloud tuân thủ GDPR, CCPA, LGPD, Luật bảo mật của Nga và Luật nguyên tắc bảo mật của Úc.</p>
</div>
</div>
</div>
</section>
<section class="news-section">
<h2 class="section-title">Tìm hiểu về tin tức</h2>
<div class="news-grid" id="newsGrid">
<!-- 文章将在这里动态加载 -->
</div>
</section>
<section class="content">
<h2 class="section-title">Sản phẩm & Dịch vụ</h2>
<div class="featured-product">
<div class="featured-product-content">
<h3>One Cloud Storage</h3>
<p>Lưu trữ các tập tin của bạn một cách an toàn trên đám mây của chúng tôi</p>
<a href="" class="btn">Hãy theo dõi</a>
</div>
<div class="featured-product-image">
<!-- 这里可以放置产品相关的图片 -->
</div>
</div>
<div class="product-grid">
<div class="product-card">
<img src="https://captcha.xyehr.cn/assets/logo/One-Captcha-Logo.png" width="45px" height="45px">
<h3>One Captcha</h3>
<p>Thêm One Captcha trong vài giây.</p>
<a href="#">Xem trước sản phẩm</a>
</div>
<div class="product-card">
<img src="https://pass.xyehr.cn/assets/images/One-Pass-Logo.png" width="45px" height="45px">
<h3>One Pass</h3>
<p>Trình tạo mật khẩu an toàn.</p>
<a href="https://pass.xyehr.cn" target="_blank">Xem trước sản phẩm</a>
</div>
<div class="product-card">
<img src="https://notes.xyehr.cn/assets/images/Easy-Notes-Logo.png" width="45px" height="45px">
<h3>Easy Notes</h3>
<p>Lưu trữ ghi chú cục bộ.</p>
<a href="https://notes.xyehr.cn/" taget="_blank">Xem trước sản phẩm</a>
</div>
<div class="product-card">
<i class="fas fa-server"></i>
<h3>One Cloud Storage</h3>
<p>Lưu trữ các tập tin của bạn một cách an toàn trên đám mây của chúng tôi</p>
<a href="">Hãy theo dõi</a>
</div>
<div class="product-card">
<h3>One Translate</h3>
<p>Dịch vụ dịch thuật miễn phí.</p>
<a href="">Hãy theo dõi</a>
</div>
<div class="product-card">
<i class="fas fa-mail"></i>
<h3>One Mail</h3>
<p>Một dịch vụ email an toàn</p>
<a href="">Hãy theo dõi</a>
</div>
</div>
</section>
<section class="next-steps">
<h2 class="section-title">Thực hiện bước tiếp theo</h2>
<div class="step-grid">
<div class="product-card">
<i class="fas fa-rocket"></i>
<h3>Bắt đầu</h3>
<p>Hãy bắt đầu ngay bây giờ và dùng thử sản phẩm đầu tiên của chúng tôi</p>
<a href="">Bắt đầu</a>
</div>
<div class="product-card">
<i class="fas fa-book"></i>
<h3>Học hỏi</h3>
<p>Khám phá tài liệu hướng dẫn và nguồn tài nguyên phong phú của chúng tôi.</p>
<a href=""></a>
</div>
<div class="product-card">
<i class="fas fa-users"></i>
<h3>Tham gia cộng đồng</h3>
<p>Kết nối với các nhà phát triển khác và nhận hỗ trợ.</p>
<a href="https://discord.gg/4v4YFkdDjH">Tham gia cộng đồng Discord của chúng tôi</a>
</div>
</div>
</section>
<footer>
<div class="footer-links">
<a href="#">Liên hệ với chúng tôi</a>
<a href="#">Báo cáo sự cố</a>
</div>
<p class="footer-text">© Tech-Art Cloud 2024</p>
</footer>
</div>
<!--<script>
function generateRandomString(length) {
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789#%@*&';
let result = '';
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * characters.length));
}
return result;
}
function onTurnstileSuccess(token) {
const randomString = generateRandomString(300);
const newUrl = window.location.href.split('?')[0] + '?cf-turnstile-code=' + randomString;
window.history.replaceState(null, null, newUrl);
setTimeout(function() {
window.history.replaceState(null, null, window.location.pathname);
document.getElementById('captcha-container').classList.add('hidden');
document.getElementById('original-content').classList.remove('hidden');
}, 1869);
}
</script>-->
<script>
function isElementInViewport(el) {
var rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
function handleScroll() {
var cards = document.querySelectorAll('.product-card, .feature-card, .step-card, .news-card');
cards.forEach(function(card) {
if (isElementInViewport(card)) {
card.classList.add('show');
}
});
}
// Trigger the effect on initial load
handleScroll();
// Listen for scroll events
window.addEventListener('scroll', handleScroll);
</script>
</body>
</html>