-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1194 lines (1148 loc) · 54.6 KB
/
index.html
File metadata and controls
1194 lines (1148 loc) · 54.6 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
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
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, viewport-fit=cover" name="viewport"/>
<title>TruthWeb - The Ultimate Pi Network Hub</title>
<!-- TailwindCSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome CDN (v6.5.1 for latest icons) -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet"/>
<!-- Google Fonts: Poppins -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet"/>
<style>
:root {
--primary-color: #000000;
--secondary-color: #FFFFFF;
--highlight-color: #CCCCCC;
--text-color: #FFFFFF;
--button-bg-color: #000000;
--button-text-color: #FFFFFF;
--button-hover-bg-color: #FFFFFF;
--button-hover-text-color: #000000;
--background-color: #FFFFFF;
--accent-color: #FFD700;
--progress-bar-color: var(--accent-color);
}
html { scroll-behavior: smooth; }
body {
background: var(--background-color);
color: var(--primary-color);
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
overflow-x: hidden;
line-height: 1.6;
padding-bottom: 0; /* Removed padding-bottom since footer-menu is gone */
}
/* Progress Bar Styles */
.progress-bar {
position: fixed;
top: 0;
left: 0;
width: 0;
height: 4px;
background: var(--progress-bar-color);
z-index: 1001;
transition: width 0.3s ease;
box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}
/* Go to Top Button Styles */
.go-to-top {
position: fixed;
bottom: 20px;
right: 20px;
background: var(--accent-color);
color: var(--primary-color);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
border: none;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, transform 0.3s ease;
z-index: 1000;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.go-to-top.visible {
opacity: 1;
visibility: visible;
}
.go-to-top:hover {
background: #FFA500;
transform: scale(1.1);
}
.go-to-top:active {
transform: scale(0.95);
}
.sticky-header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: var(--primary-color);
color: var(--text-color);
transition: all 0.3s ease;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1rem;
height: 64px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.sticky-header.hidden { transform: translateY(-100%); }
.sticky-header.scrolled {
background: var(--secondary-color);
color: var(--primary-color);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@keyframes slideInHeader {
from { transform: translateY(-100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.sticky-header .logo-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-color);
transition: color 0.3s ease;
}
.sticky-header.scrolled .logo-text {
color: var(--primary-color);
}
.burger-btn {
display: flex;
cursor: pointer;
flex-direction: column;
justify-content: center;
width: 30px;
height: 30px;
margin-left: 0.5rem;
transition: transform 0.3s ease;
}
.burger-btn:hover { transform: scale(1.1); }
.burger-btn span {
width: 100%;
height: 3px;
background: var(--text-color);
margin: 2px 0;
transition: all 0.3s ease;
}
.sticky-header.scrolled .burger-btn span {
background: var(--primary-color);
}
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scale(0); }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
position: fixed;
top: 64px;
left: -100%;
width: 80%;
max-width: 300px;
height: calc(100vh - 64px);
background: var(--primary-color);
color: var(--text-color);
transition: left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
z-index: 999;
padding: 1rem;
animation: fadeInMenu 0.4s ease-out forwards;
}
.mobile-menu.open { left: 0; }
@keyframes fadeInMenu {
from { opacity: 0; }
to { opacity: 1; }
}
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu .nav-item a {
display: block;
padding: 0.75rem;
color: var(--text-color);
font-size: 1.1rem;
transition: all 0.3s ease;
}
.mobile-menu .nav-item a:hover {
color: var(--highlight-color);
transform: translateX(10px) scale(1.05);
}
.desktop-nav { display: flex; }
.desktop-nav .nav-item {
transition: transform 0.3s ease;
animation: fadeInUp 0.5s ease-in-out forwards;
}
.desktop-nav .nav-item a {
color: var(--text-color);
padding: 0.5rem 1rem;
transition: all 0.3s ease;
}
.sticky-header.scrolled .desktop-nav .nav-item a {
color: var(--primary-color);
}
.desktop-nav .nav-item a:hover {
color: var(--highlight-color);
transform: scale(1.1);
}
.desktop-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
.desktop-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
.desktop-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
.desktop-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
.desktop-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
.desktop-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }
.desktop-nav .nav-item:nth-child(7) { animation-delay: 0.7s; }
.desktop-nav .nav-item:nth-child(8) { animation-delay: 0.8s; }
.desktop-nav .nav-item:hover {
transform: scale(1.1) translateY(-5px);
}
.search-container {
position: relative;
flex-grow: 1;
max-width: 400px;
margin: 0 1rem;
transition: all 0.3s ease;
}
.search-input {
width: 100%;
padding: 0.5rem 2.5rem 0.5rem 1rem;
border: 1px solid var(--highlight-color);
border-radius: 9999px;
background: var(--secondary-color);
color: var(--primary-color);
font-size: 1rem;
outline: none;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.search-input:focus {
border-color: var(--primary-color);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
transform: scale(1.02) translateY(-2px);
}
.search-icon {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
color: var(--primary-color);
font-size: 1.2rem;
transition: transform 0.3s ease, color 0.3s ease;
}
.sticky-header.scrolled .search-icon {
color: var(--primary-color);
}
.search-input:focus + .search-icon { transform: translateY(-50%) scale(1.1); }
.search-results {
position: absolute;
top: 100%;
left: 0;
width: 100%;
max-height: 300px;
overflow-y: auto;
background: var(--secondary-color);
border: 1px solid var(--highlight-color);
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
z-index: 60;
display: none;
animation: dropIn 0.3s ease-out forwards;
}
.search-results.active { display: block; }
@keyframes dropIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.search-result-item {
padding: 0.75rem;
color: var(--primary-color);
border-bottom: 1px solid var(--highlight-color);
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
}
.search-result-item:hover {
background: var(--highlight-color);
transform: scale(1.02);
}
.icon {
color: var(--text-color);
font-size: 1.25rem;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
margin-left: 0.75rem;
}
.sticky-header.scrolled .icon {
color: var(--primary-color);
}
.icon:hover {
transform: scale(1.15) rotate(5deg);
}
.floating-effect {
transition: transform 0.3s ease;
}
.floating-effect:hover {
transform: translateY(-5px) rotate(5deg);
}
main { margin-top: 64px; }
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: var(--primary-color);
color: var(--text-color);
text-align: center;
padding: 1rem;
position: relative;
overflow: hidden;
animation: fadeInHero 1s ease-out forwards;
}
@keyframes fadeInHero {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
.hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
animation: pulseGlow 3s infinite alternate, float 6s infinite ease-in-out;
}
@keyframes pulseGlow {
0% { opacity: 0.5; }
100% { opacity: 0.8; }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.glow-text {
font-size: 3rem;
font-weight: 700;
text-shadow: 0 0 10px var(--highlight-color);
animation: glow 2s infinite alternate, bounce 3s infinite ease-in-out;
}
@keyframes glow {
0% { text-shadow: 0 0 10px var(--highlight-color); }
100% { text-shadow: 0 0 20px var(--highlight-color); }
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--button-bg-color);
color: var(--button-text-color);
padding: 0.5rem 1.5rem;
border: 1px solid var(--highlight-color);
border-radius: 9999px;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
z-index: 1;
min-width: 100px;
margin-top: 1rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
animation: pulse 2s infinite;
}
.btn:hover {
background: var(--button-hover-bg-color);
color: var(--button-hover-text-color);
transform: scale(1.05) translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn:active {
transform: scale(0.98);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.btn.accent {
background: var(--accent-color);
color: var(--primary-color);
border: none;
}
.btn.accent:hover {
background: #FFA500;
color: var(--primary-color);
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
section { padding: 2rem 1rem; }
.card {
background: var(--secondary-color);
border: 1px solid var(--highlight-color);
border-radius: 10px;
padding: 1.5rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: slideInCard 0.5s ease-out forwards;
}
.card:hover {
transform: translateY(-10px) rotate(2deg);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
@keyframes slideInCard {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.card i {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
transition: transform 0.3s ease;
}
.card:hover i { transform: scale(1.1); }
.feed-container {
max-width: 600px;
margin: 0 auto;
}
.feed-item {
padding: 1rem;
border-bottom: 1px solid var(--highlight-color);
transition: background 0.2s ease, transform 0.3s ease;
}
.feed-item:hover {
background: rgba(204, 204, 204, 0.1);
transform: scale(1.01);
}
.feed-item:last-child { border-bottom: none; }
.feed-header {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
}
.feed-avatar {
font-size: 2rem;
margin-right: 0.75rem;
color: var(--primary-color);
transition: transform 0.3s ease;
}
.feed-item:hover .feed-avatar { transform: scale(1.1); }
.feed-user {
font-weight: 600;
font-size: 1rem;
}
.feed-time {
font-size: 0.85rem;
color: var(--highlight-color);
margin-left: 0.5rem;
}
.feed-content {
font-size: 1rem;
margin-bottom: 0.75rem;
line-height: 1.4;
}
.feed-actions {
display: flex;
justify-content: space-between;
max-width: 300px;
}
.feed-actions button {
background: none;
border: none;
color: var(--primary-color);
font-size: 0.85rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.25rem;
padding: 0.2rem 0.5rem;
border-radius: 9999px;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feed-actions button i { font-size: 1rem; }
.feed-actions button:hover {
background: var(--highlight-color);
color: var(--primary-color);
transform: scale(1.1);
}
.feed-banner {
background: var(--secondary-color);
border: 1px solid var(--highlight-color);
border-radius: 10px;
padding: 1rem;
margin-bottom: 1rem;
text-align: center;
animation: slideInCard 0.5s ease-out forwards;
}
.feed-banner img {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 0.5rem;
}
footer {
background: var(--primary-color);
color: var(--text-color);
text-align: center;
padding: 2rem 1rem;
position: relative;
z-index: 10;
animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeInUp {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
footer .social-icons a, footer .footer-links a {
color: var(--text-color);
transition: color 0.3s ease, transform 0.3s ease;
}
footer .social-icons a:hover, footer .footer-links a:hover {
color: var(--highlight-color);
transform: scale(1.1);
}
footer .social-icons { margin-bottom: 1rem; }
footer .social-icons a {
font-size: 1.25rem;
margin: 0 0.5rem;
}
footer .footer-links a {
margin: 0 0.5rem;
text-decoration: none;
}
.download-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1rem;
}
.download-btn img {
height: 40px;
transition: transform 0.3s ease;
}
.download-btn:hover img { transform: scale(1.1); }
#user-stats { position: relative; z-index: 10; }
.stat-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}
.stat-item:hover { transform: scale(1.05); }
.stat-item i {
color: var(--text-color);
transition: transform 0.3s ease;
}
.stat-item:hover i { transform: scale(1.1); }
@media (max-width: 640px) {
.burger-btn { display: flex; }
.desktop-nav { display: none; }
.search-container { max-width: 120px; margin: 0 0.5rem; }
.sticky-header { padding: 0 0.5rem; }
.logo-text { font-size: 1.25rem; }
.icon { font-size: 1.1rem; margin-left: 0.5rem; }
.glow-text { font-size: 1.75rem; }
.btn { padding: 0.4rem 1rem; font-size: 0.85rem; min-width: 80px; }
.card i { font-size: 2rem; }
.card h3 { font-size: 1.25rem; }
.section-title { font-size: 1.5rem; }
.feed-container { max-width: 100%; padding: 0 0.5rem; }
.feed-item img { max-width: 100%; }
.feed-actions { max-width: 100%; }
footer .social-icons a, footer .footer-links a { font-size: 0.9rem; }
.download-buttons { flex-direction: column; gap: 0.5rem; }
#user-stats .text-4xl { font-size: 1.75rem; }
#user-stats .text-2xl { font-size: 1.25rem; }
#user-stats .fa-3x { font-size: 2rem; }
.go-to-top { width: 40px; height: 40px; font-size: 1.2rem; }
}
@media (min-width: 641px) and (max-width: 1024px) {
.burger-btn { display: none; }
.desktop-nav { display: flex; }
.search-container { max-width: 300px; }
.glow-text { font-size: 2.5rem; }
.btn { padding: 0.5rem 1.2rem; }
.card i { font-size: 2.25rem; }
footer .social-icons a, footer .footer-links a { font-size: 1rem; }
}
@media (min-width: 1025px) {
.burger-btn { display: none; }
.desktop-nav { display: flex; }
.search-container { max-width: 400px; }
.glow-text { font-size: 3rem; }
footer .social-icons a, footer .footer-links a { font-size: 1rem; }
}
</style>
</head>
<body>
<div class="progress-bar"></div>
<header class="sticky-header">
<div class="flex items-center">
<a href="index.html" class="text-inherit flex items-center">
<span class="logo-text ml-2">TruthWeb</span>
</a>
</div>
<div class="search-container">
<input type="text" class="search-input" placeholder="Search TruthWeb..." aria-label="Search TruthWeb">
<i class="fas fa-search search-icon"></i>
<div class="search-results"></div>
</div>
<div class="flex items-center">
<nav class="desktop-nav hidden md:flex items-center">
<ul class="flex space-x-4">
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="marketplace.html">Marketplace</a></li>
<li class="nav-item"><a href="profile.html">Profile</a></li>
<li class="nav-item"><a href="wallet.html">Wallet</a></li>
<li class="nav-item"><a href="ledger-testnet.html">Ledger Testnet</a></li>
<li class="nav-item"><a href="community.html">Community</a></li>
<li class="nav-item"><a href="developers.html">Developers</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
</ul>
</nav>
<a href="marketplace.html" class="icon floating-effect"><i class="fas fa-shopping-cart"></i></a>
<a href="profile.html" class="icon floating-effect"><i class="fas fa-user"></i></a>
<a href="wallet.html" class="icon floating-effect"><i class="fas fa-wallet"></i></a>
<div class="burger-btn">
<span></span>
<span></span>
<span></span>
</div>
</div>
</header>
<nav class="mobile-menu">
<ul>
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="marketplace.html">Marketplace</a></li>
<li class="nav-item"><a href="profile.html">Profile</a></li>
<li class="nav-item"><a href="wallet.html">Wallet</a></li>
<li class="nav-item"><a href="ledger-testnet.html">Ledger Testnet</a></li>
<li class="nav-item"><a href="community.html">Community</a></li>
<li class="nav-item"><a href="developers.html">Developers</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
</ul>
</nav>
<main>
<section class="hero">
<h1 class="glow-text">TruthWeb</h1>
<p class="text-xl mt-4 md:text-2xl">The Ultimate Decentralized Pi Network Hub</p>
<p class="text-lg mt-2">Join over 5 million Pioneers worldwide in the leading platform for Pi Network</p>
<p class="text-sm mt-2 opacity-75">[This is a test net mode, not official]</p>
<div class="download-buttons">
<a href="https://play.google.com/store" target="_blank" class="download-btn">
<img data-src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg" alt="Get it on Google Play">
</a>
<a href="https://www.apple.com/app-store/" target="_blank" class="download-btn">
<img data-src="https://upload.wikimedia.org/wikipedia/commons/3/3c/Download_on_the_App_Store_Badge.svg" alt="Download on the App Store">
</a>
</div>
<p class="text-sm mt-4">Over 5 million downloads worldwide!</p>
</section>
<section id="user-stats" class="py-16 px-4 bg-gradient-to-r from-purple-500 to-blue-500 text-white">
<div class="max-w-6xl mx-auto text-center">
<h2 class="text-4xl font-bold mb-6">Join Millions of Pioneers Worldwide</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="stat-item">
<i class="fas fa-users fa-3x mb-4"></i>
<h3 class="text-2xl font-semibold">5M+</h3>
<p>Active Pioneers</p>
</div>
<div class="stat-item">
<i class="fas fa-globe fa-3x mb-4"></i>
<h3 class="text-2xl font-semibold">200+</h3>
<p>Countries Reached</p>
</div>
<div class="stat-item">
<i class="fas fa-download fa-3x mb-4"></i>
<h3 class="text-2xl font-semibold">10M+</h3>
<p>App Downloads</p>
</div>
<div class="stat-item">
<i class="fas fa-handshake fa-3x mb-4"></i>
<h3 class="text-2xl font-semibold">250K+</h3>
<p>Daily Transactions</p>
</div>
</div>
</div>
</section>
<section id="hub" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">TruthWeb: Your Global Pi Network Hub</h2>
<div class="max-w-4xl mx-auto text-center">
<p class="text-lg mb-6 md:text-xl">TruthWeb is the premier decentralized hub for Pi Network Pioneers, connecting over 5 million users across 180+ countries. Built on trust, transparency, and innovation, TruthWeb offers a vibrant marketplace, secure wallet management, and a thriving global community—all powered by Pi, the First Digital Currency you can mine on your phone.</p>
<a href="about.html" class="btn">Learn More</a>
</div>
</section>
<section id="core-features" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">Core Features</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card"><i class="fas fa-shopping-cart"></i><h3 class="text-xl font-semibold mb-2">Pi-Powered Marketplace</h3><p>Buy and sell with Pi in a secure, decentralized environment.</p><a href="pi-powered-marketplace.html" class="btn">Explore</a></div>
<div class="card"><i class="fas fa-exchange-alt"></i><h3 class="text-xl font-semibold mb-2">Decentralized Transactions</h3><p>Secure peer-to-peer trading with zero intermediaries.</p><a href="decentralized-transactions.html" class="btn">Start</a></div>
<div class="card"><i class="fas fa-user-check"></i><h3 class="text-xl font-semibold mb-2">User Profiles & Wallet</h3><p>Manage your Pi wallet and profile seamlessly.</p><a href="user-profiles-wallet.html" class="btn">Set Up</a></div>
<div class="card"><i class="fas fa-list"></i><h3 class="text-xl font-semibold mb-2">Multi-Category Listings</h3><p>Browse diverse listings from digital goods to services.</p><a href="multi-category-listings.html" class="btn">Browse</a></div>
<div class="card"><i class="fas fa-shield-alt"></i><h3 class="text-xl font-semibold mb-2">Escrow System</h3><p>Secure payments with our trusted escrow system.</p><a href="escrow-system.html" class="btn">Learn</a></div>
<div class="card"><i class="fas fa-clock"></i><h3 class="text-xl font-semibold mb-2">Instant Transactions</h3><p>Real-time transaction tracking and notifications.</p><a href="instant-transactions.html" class="btn">View</a></div>
<div class="card"><i class="fas fa-share-alt"></i><h3 class="text-xl font-semibold mb-2">Referral Program</h3><p>Earn Pi by inviting friends</p><a href="referral-program.html" class="btn">Join Now</a></div>
<div class="card"><i class="fas fa-brain"></i><h3 class="text-xl font-semibold mb-2">AI Price Predictor</h3><p>Market trend analysis</p><a href="ai-predictor.html" class="btn">Try Now</a></div>
</div>
</section>
<!-- New Blank Section -->
<section id="new-section" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">New Section</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<!-- Add your content here -->
</div>
</section>
<section id="new-features" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-8">New Features</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-globe"></i><h3 class="text-xl font-semibold mb-2">Global Marketplace Expansion</h3><p>Access international markets with localized currency support.</p><a href="global-expansion.html" class="btn">Explore</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-robot"></i><h3 class="text-xl font-semibold mb-2">AI-Powered Insights</h3><p>Get personalized trading and investment recommendations.</p><a href="ai-insights.html" class="btn">Try Now</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-mobile-alt"></i><h3 class="text-xl font-semibold mb-2">Mobile App Enhancements</h3><p>Enjoy a revamped UI, push notifications, and offline mode.</p><a href="mobile-enhancements.html" class="btn">Learn More</a></div>
</div>
</section>
<section id="ai-bot" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-8">TruthWeb AI Bot</h2>
<div class="max-w-4xl mx-auto text-center">
<p class="text-lg mb-6 md:text-xl">Our advanced AI Bot is here to assist you 24/7 with marketplace navigation, trading queries, and more—ensuring a seamless user experience.</p>
<a href="truwebbot.html" class="btn">Chat Now</a>
</div>
</section>
<section id="feed" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-4">TruthWeb Feed</h2>
<p class="text-center text-lg mb-8 max-w-2xl mx-auto">The TruthWeb Feed connects Pioneers worldwide, showcasing user posts, updates, and sponsored ads. Share your experiences, discover Pi-powered products, and stay informed—all in one decentralized hub.</p>
<p class="text-center text-lg mb-8 max-w-2xl mx-auto">Sample Ads Below.</p>
<div class="feed-container">
<div class="feed-banner">
<p class="font-semibold mb-2">Demo: TruthWeb Updates</p>
<img data-src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&h=150&q=80" alt="TruthWeb Demo Banner" class="mb-2 rounded">
<p class="text-sm mt-2">Stay tuned for exciting updates on TruthWeb!</p>
</div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]">
<div class="feed-item">
<div class="feed-header">
<i class="fas fa-user-circle feed-avatar"></i>
<div>
<span class="feed-user">PioneerA</span>
<span class="feed-time">Mar 5, 2025, 18:45</span>
</div>
</div>
<p class="feed-content">Just sold 500 Pi in a P2P trade! Loving the seamless experience on TruthWeb.</p>
<div class="feed-actions">
<button><i class="far fa-comment"></i> 2</button>
<button><i class="fas fa-retweet"></i> 1</button>
<button><i class="far fa-heart"></i> 3</button>
<button><i class="fas fa-share-square"></i></button>
</div>
</div>
<div class="feed-item">
<div class="feed-header">
<i class="fas fa-ad feed-avatar"></i>
<div>
<span class="feed-user">TruthWeb Ads</span>
<span class="feed-time">Sponsored</span>
</div>
</div>
<p class="feed-content">Get the new Pi Software for only 100 Pi! Boost your productivity today.</p>
<img data-src="https://images.unsplash.com/photo-1666875753105-c63a6f3bdc86?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&h=200&q=80" alt="Pi Software Ad" class="mb-2 rounded">
<a href="marketplace.html" class="btn w-full">Shop Now</a>
</div>
<div class="feed-item">
<div class="feed-header">
<i class="fas fa-ad feed-avatar"></i>
<div>
<span class="feed-user">TruthWeb Ads</span>
<span class="feed-time">Sponsored</span>
</div>
</div>
<p class="feed-content">Join the Pi Mining Workshop! Learn to maximize your earnings for just 25 Pi.</p>
<img data-src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&h=200&q=80" alt="Pi Mining Workshop Ad" class="mb-2 rounded">
<a href="workshops.html" class="btn w-full">Register Now</a>
</div>
<div class="feed-item">
<div class="feed-header">
<i class="fas fa-user-circle feed-avatar"></i>
<div>
<span class="feed-user">VendorB</span>
<span class="feed-time">Mar 5, 2025, 14:30</span>
</div>
</div>
<p class="feed-content">New Pi eBook available in the marketplace! Check it out for only 50 Pi.</p>
<a href="marketplace.html" class="text-[var(--primary-color)] underline">View Product</a>
<div class="feed-actions mt-2">
<button><i class="far fa-comment"></i> 3</button>
<button><i class="fas fa-retweet"></i> 2</button>
<button><i class="far fa-heart"></i> 5</button>
<button><i class="fas fa-share-square"></i></button>
</div>
</div>
<div class="feed-item">
<div class="feed-header">
<i class="fas fa-ad feed-avatar"></i>
<div>
<span class="feed-user">TruthWeb Ads</span>
<span class="feed-time">Sponsored</span>
</div>
</div>
<p class="feed-content">Upgrade your wallet with Pi Premium Security! Only 75 Pi for lifetime access.</p>
<img data-src="https://images.unsplash.com/photo-1556740749-887f6717d7e4?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&h=200&q=80" alt="Pi Premium Security Ad" class="mb-2 rounded">
<a href="wallet.html#premium" class="btn w-full">Get It Now</a>
</div>
<div class="feed-item">
<div class="feed-header">
<i class="fas fa-ad feed-avatar"></i>
<div>
<span class="feed-user">TruthWeb Ads</span>
<span class="feed-time">Sponsored</span>
</div>
</div>
<p class="feed-content">Advertise your business on TruthWeb! Reach 5M+ Pioneers starting at 200 Pi.</p>
<img data-src="https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&h=200&q=80" alt="Advertise on TruthWeb Ad" class="mb-2 rounded">
<a href="promote.html" class="btn w-full">Learn More</a>
</div>
</div>
<div class="text-center mt-6">
<a href="truthwebfeed.html" class="btn">See Full Feed</a>
</div>
</div>
</section>
<section id="community" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-8">Community & Social</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-check-circle"></i><h3 class="text-xl font-semibold mb-2">Pioneer Verification</h3><p>Ensure trusted transactions with verified users.</p><a href="pioneerverification.html" class="btn">Verify</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-star"></i><h3 class="text-xl font-semibold mb-2">Reviews & Ratings</h3><p>Build trust with user reviews and ratings.</p><a href="reviewsratings.html" class="btn">Review</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-comments"></i><h3 class="text-xl font-semibold mb-2">Messaging & Chat</h3><p>Direct, secure communication with other Pioneers.</p><a href="messagingchat.html" class="btn">Chat</a></div>
</div>
</section>
<section id="developers" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">Developer & Business</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card">
<i class="fas fa-code"></i>
<h3 class="text-xl font-semibold mb-2">Open-Source API</h3>
<p>Build powerful Pi integrations with our API.</p>
<a href="api-docs.html" class="btn">Docs</a>
</div>
<div class="card">
<i class="fas fa-chart-line"></i>
<h3 class="text-xl font-semibold mb-2">Vendor Dashboard</h3>
<p>Access advanced seller analytics and insights.</p>
<a href="dashboardmonitoring.html" class="btn">View</a>
</div>
<div class="card">
<i class="fas fa-box-open"></i>
<h3 class="text-xl font-semibold mb-2">Automated Orders</h3>
<p>Enable instant delivery for digital goods.</p>
<a href="automated.html" class="btn">List</a>
</div>
<div class="card">
<i class="fas fa-ad"></i>
<h3 class="text-xl font-semibold mb-2">Ad & Promotion</h3>
<p>Boost your listing visibility with targeted ads.</p>
<a href="promote.html" class="btn">Promote</a>
</div>
<div class="card">
<i class="fas fa-money-bill-wave"></i>
<h3 class="text-xl font-semibold mb-2">Multi-Currency</h3>
<p>Convert Pi to fiat for transparent pricing.</p>
<a href="multicurrency.html" class="btn">Convert</a>
</div>
<div class="card">
<i class="fas fa-code-branch"></i>
<h3 class="text-xl font-semibold mb-2">API Playground</h3>
<p>Test API endpoints in real-time</p>
<a href="api-playground.html" class="btn">Explore</a>
</div>
</div>
</section>
<section id="testimonials" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">What Our Users Say</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card"><p class="mb-4">"Sold my digital art easily!"</p><p>- Artist123</p></div>
<div class="card"><p class="mb-4">"Supportive community!"</p><p>- Learner456</p></div>
<div class="card"><p class="mb-4">"Top-notch API docs!"</p><p>- Dev789</p></div>
</div>
</section>
<section id="security" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-8">Security & Trust</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-id-badge"></i><h3 class="text-xl font-semibold mb-2">KYC Verification</h3><p>Secure your account with KYC verification.</p><a href="kycverification.html" class="btn">Verify</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-lock"></i><h3 class="text-xl font-semibold mb-2">End-to-End Encryption</h3><p>Protect your data with advanced encryption.</p><a href="endtoendencryption.html" class="btn">Learn</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-mobile-alt"></i><h3 class="text-xl font-semibold mb-2">Two-Factor Authentication</h3><p>Add an extra layer of security with 2FA.</p><a href="twofactor.html" class="btn">Enable</a></div>
</div>
</section>
<section id="fraud-detection" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">Fraud Detection</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card">
<i class="fas fa-robot"></i>
<h3 class="text-xl font-semibold mb-2">AI-Powered Monitoring</h3>
<p>Real-time fraud detection with AI.</p>
<a href="fraud-detection.html" class="btn">Learn More</a>
</div>
<div class="card">
<i class="fas fa-shield-alt"></i>
<h3 class="text-xl font-semibold mb-2">Transaction Safety</h3>
<p>Protecting your Pi trades.</p>
<a href="trustedtransactions.html" class="btn">Details</a>
</div>
<div class="card">
<i class="fas fa-chart-line"></i>
<h3 class="text-xl font-semibold mb-2">Anomaly Detection</h3>
<p>Spot suspicious activity instantly.</p>
<a href="fraud-detection.html#anomaly" class="btn">Explore</a>
</div>
</div>
</section>
<section id="news" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">TruthWeb News</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card"><i class="fas fa-newspaper"></i><h3 class="text-xl font-semibold mb-2">v1.0 Launched!</h3><p>Pi-powered platform live.</p><a href="news.html#launch" class="btn">Read</a></div>
<div class="card"><i class="fas fa-coins"></i><h3 class="text-xl font-semibold mb-2">Pi Milestone</h3><p>50M Pioneers reached.</p><a href="https://minepi.com/news" target="_blank" class="btn">Read</a></div>
<div class="card"><i class="fas fa-users"></i><h3 class="text-xl font-semibold mb-2">Community Update</h3><p>New forum features.</p><a href="community.html#update" class="btn">Read</a></div>
</div>
</section>
<section id="pitrack" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-8">PiTrack</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-chart-bar"></i><h3 class="text-xl font-semibold mb-2">Track Your Pi</h3><p>Monitor wallet activity.</p><a href="pitrack.html#wallet" class="btn">View</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-history"></i><h3 class="text-xl font-semibold mb-2">Transaction Insights</h3><p>Real-time updates.</p><a href="pitrack.html#history" class="btn">Check</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-tachometer-alt"></i><h3 class="text-xl font-semibold mb-2">Ecosystem Metrics</h3><p>Pi usage trends.</p><a href="pitrack.html#metrics" class="btn">Stats</a></div>
</div>
</section>
<section id="pitrade" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">Pi Trade</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card"><i class="fas fa-handshake"></i><h3 class="text-xl font-semibold mb-2">P2P Trading</h3><p>Trade Pi directly.</p><a href="pitrade.html#p2p" class="btn">Trade</a></div>
<div class="card"><i class="fas fa-chart-line"></i><h3 class="text-xl font-semibold mb-2">Market Trends</h3><p>View Pi value trends.</p><a href="pitrade.html#trends" class="btn">Trends</a></div>
<div class="card"><i class="fas fa-exchange-alt"></i><h3 class="text-xl font-semibold mb-2">Trade Dashboard</h3><p>Manage trades.</p><a href="pitrade.html#dashboard" class="btn">Open</a></div>
</div>
</section>
<section id="referral-program" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">Referral Program</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<div class="card">
<i class="fas fa-user-friends"></i>
<h3 class="text-xl font-semibold mb-2">Invite Friends</h3>
<p>Earn Pi by referring friends.</p>
<a href="referral-program.html" class="btn">Join Now</a>
</div>
<div class="card">
<i class="fas fa-gift"></i>
<h3 class="text-xl font-semibold mb-2">Earn Rewards</h3>
<p>Get bonuses for each referral.</p>
<a href="referral-program.html#rewards" class="btn">See Rewards</a>
</div>
<div class="card">
<i class="fas fa-share-alt"></i>
<h3 class="text-xl font-semibold mb-2">Share Easily</h3>
<p>Use your unique link to invite.</p>
<a href="referral-program.html#share" class="btn">Get Link</a>
</div>
</div>
</section>
<section id="content" class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="section-title text-3xl font-bold text-center mb-8">Content</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-8 max-w-6xl mx-auto">
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-video"></i><h3 class="text-xl font-semibold mb-2">Video Series</h3><p>Latest Pi insights.</p><a href="truthweb-hub.html" class="btn">Watch</a></div>
<div class="card bg-[var(--secondary-color)] text-[var(--primary-color)]"><i class="fas fa-newspaper"></i><h3 class="text-xl font-semibold mb-2">Latest News</h3><p>Fresh Pi updates.</p><a href="truthweb-news.html" class="btn">Read</a></div>
</div>
</section>
<section id="coming-soon" class="py-16 px-4">
<h2 class="section-title text-3xl font-bold text-center mb-8">Coming Soon</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8 max-w-6xl mx-auto">
<div class="card"><i class="fas fa-image"></i><h3 class="text-xl font-semibold mb-2">NFT Marketplace</h3><p>Trade NFTs with Pi.</p><a href="future.html#nfts" class="btn">Update</a></div>
<div class="card"><i class="fas fa-robot"></i><h3 class="text-xl font-semibold mb-2">AI Recommendations</h3><p>Personalized suggestions.</p><a href="future.html#ai" class="btn">Update</a></div>
<div class="card"><i class="fas fa-gavel"></i><h3 class="text-xl font-semibold mb-2">Dispute Resolution</h3><p>Community-driven.</p><a href="future.html#disputes" class="btn">Update</a></div>
<div class="card"><i class="fas fa-coins"></i><h3 class="text-xl font-semibold mb-2">Pi Staking</h3><p>Earn rewards.</p><a href="future.html#staking" class="btn">Update</a></div>
</div>
</section>
<!-- Monetization Section -->
<section class="py-16 px-4 bg-[var(--primary-color)] text-[var(--text-color)]">
<h2 class="text-3xl font-bold text-center mb-8">Support TruthWeb</h2>
<div class="max-w-4xl mx-auto text-center">
<p class="text-lg mb-6">
Love our decentralized content? Subscribe, donate, or join our partners to fuel the TruthWeb journey!
</p>
<div class="flex justify-center space-x-4">
<a href="https://www.youtube.com/@TruthWebYoutube?sub_confirmation=1" target="_blank" class="btn">Subscribe</a>