-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecosystem.html
More file actions
1422 lines (1332 loc) · 100 KB
/
ecosystem.html
File metadata and controls
1422 lines (1332 loc) · 100 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" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kadena Ecosystem | Ecosystem</title>
<link rel="icon" type="image/svg+xml" href="img/favicon.svg">
<meta name="description"
content="Discover the dApps, NFTs, DeFi protocols, and tools built on the Kadena Blockchain. Explore the Chainweb ecosystem.">
<meta name="keywords"
content="Kadena Ecosystem, dApps, NFT, DeFi, DEX, Projects, KDA, Kadena Blockchain, Chainweb, Pact, Web3, Crypto, Cryptocurrency, POW Blockchain">
<meta name="author" content="Kadena Community">
<link rel="canonical" href="https://kda-community.github.io/ecosystem.html">
<meta property="og:type" content="website">
<meta property="og:url" content="https://kda-community.github.io/ecosystem.html">
<meta property="og:title" content="Kadena Ecosystem | Ecosystem">
<meta property="og:description"
content="Discover the dApps, NFTs, DeFi protocols, and tools built on the Kadena Blockchain. Explore the Chainweb ecosystem.">
<meta property="og:image" content="https://kda-community.github.io/img/og_card/og_ecosystem.png">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://kda-community.github.io/ecosystem.html">
<meta property="twitter:title" content="Kadena Ecosystem | Ecosystem">
<meta property="twitter:description"
content="Discover the dApps, NFTs, DeFi protocols, and tools built on the Kadena Blockchain. Explore the Chainweb ecosystem.">
<meta property="twitter:image" content="https://kda-community.github.io/img/og_card/og_ecosystem.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://kda-community.github.io/"
},{
"@type": "ListItem",
"position": 2,
"name": "Ecosystem",
"item": "https://kda-community.github.io/ecosystem.html"
}]
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
brand: {
DEFAULT: '#63e038', /* Green */
hover: '#4ecf25',
},
dao: {
DEFAULT: '#f7931a', /* Orange */
hover: '#e0820b',
},
dev: {
DEFAULT: '#3498db', /* Blue */
hover: '#2980b9',
},
surface: {
light: '#FAFAFA',
dark: '#050505',
card: '#121212',
border: '#27272a'
},
text: {
mainLight: '#1e1f23',
mainDark: '#f5f5f5',
}
}
}
}
}
</script>
<style>
body {
transition: background-color 0.3s, color 0.3s;
}
.aspect-video {
aspect-ratio: 16 / 9;
}
</style>
</head>
<body
class="bg-surface-light dark:bg-surface-dark bg-grid text-text-mainLight dark:text-text-mainDark font-sans antialiased selection:bg-brand selection:text-black overflow-x-hidden flex flex-col min-h-screen">
<div class="fixed inset-0 pointer-events-none vignette z-0"></div>
<nav
class="fixed w-full z-50 top-0 start-0 border-b border-gray-200 dark:border-surface-border bg-white/95 dark:bg-surface-dark/95 backdrop-blur-md">
<div class="max-w-7xl mx-auto flex flex-wrap items-center justify-between p-4">
<a href="index.html" class="flex items-center">
<img src="img/kadenace_dark.svg" class="h-9 md:h-12 w-auto block dark:hidden" alt="Kadena">
<img src="img/kadenace_light.svg" class="h-9 md:h-12 w-auto hidden dark:block" alt="Kadena">
</a>
<div class="flex md:order-2 space-x-2 md:space-x-4 items-center">
<button id="theme-toggle" type="button"
class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-800 rounded-lg text-sm p-2.5 transition-colors">
<svg id="theme-toggle-dark-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path>
</svg>
<svg id="theme-toggle-light-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.706.707a1 1 0 11-1.414-1.414l.706.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 100 2h1z"
fill-rule="evenodd" clip-rule="evenodd"></path>
</svg>
</button>
<button id="menu-toggle" type="button"
class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-800">
<svg class="w-5 h-5" fill="none" viewBox="0 0 17 14" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 1h15M1 7h15M1 13h15" />
</svg>
</button>
</div>
<div class="items-center justify-between hidden w-full md:flex md:w-auto md:order-1" id="navbar-cta">
<ul
class="flex flex-col font-medium p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:flex-row md:space-x-8 md:mt-0 md:border-0 md:bg-white dark:bg-surface-card md:dark:bg-transparent dark:border-gray-700 shadow-xl md:shadow-none relative z-50">
<li><a href="miners.html"
class="block py-2 px-3 md:p-0 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-brand dark:text-white dark:hover:bg-gray-700 dark:hover:text-brand">Miners</a>
</li>
<li><a href="developers.html"
class="block py-2 px-3 md:p-0 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-dev dark:text-white dark:hover:bg-gray-700 dark:hover:text-dev">Developers</a>
</li>
<li><a href="dao.html"
class="block py-2 px-3 md:p-0 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-dao dark:text-white dark:hover:bg-gray-700 dark:hover:text-dao">DAO</a>
</li>
<li><a href="ecosystem.html"
class="block py-2 px-3 md:p-0 text-white bg-brand rounded md:bg-transparent md:text-brand"
aria-current="page">Ecosystem</a></li>
<li><a href="wallets.html"
class="block py-2 px-3 md:p-0 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-brand dark:text-white dark:hover:bg-gray-700 dark:hover:text-brand">Wallets</a>
</li>
<li><a href="https://explorer.chainweb-community.org/mainnet" target="_blank"
class="external-link block py-2 px-3 md:p-0 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-brand dark:text-white dark:hover:bg-gray-700 dark:hover:text-brand">Explorer</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="pt-32 pb-24 px-4 relative z-10 w-full flex-grow">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h1 class="text-4xl md:text-5xl font-extrabold tracking-tight mb-4">
Explore the <span class="text-brand">Ecosystem</span>
</h1>
<p class="text-gray-600 dark:text-gray-400 max-w-2xl mx-auto">
Discover the dApps, tools, and protocols building the future on Kadena.
</p>
</div>
<div class="flex flex-wrap justify-center gap-2 mb-12" id="filter-container">
<button onclick="filterProjects('all')" data-filter="all"
class="filter-btn active px-4 py-2 rounded-full text-sm font-bold border transition-all bg-brand text-black border-brand hover:opacity-90">All</button>
<button onclick="filterProjects('defi')" data-filter="defi"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">DeFi</button>
<button onclick="filterProjects('community')" data-filter="community"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Community</button>
<button onclick="filterProjects('game')" data-filter="game"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Game</button>
<button onclick="filterProjects('oracles')" data-filter="oracles"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Oracles</button>
<button onclick="filterProjects('exchanges')" data-filter="exchanges"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Exchanges</button>
<button onclick="filterProjects('dex')" data-filter="dex"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">DEX</button>
<button onclick="filterProjects('nft')" data-filter="nft"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">NFT</button>
<button onclick="filterProjects('bridge')" data-filter="bridge"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Bridge</button>
<button onclick="filterProjects('tools')" data-filter="tools"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Tools</button>
<button onclick="filterProjects('infra')" data-filter="infra"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Infra</button>
<button onclick="filterProjects('protocol')" data-filter="protocol"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Protocol</button>
<button onclick="filterProjects('explorer')" data-filter="explorer"
class="filter-btn px-4 py-2 rounded-full text-sm font-medium border border-gray-300 dark:border-gray-700 bg-white dark:bg-surface-card hover:border-brand hover:text-brand transition-all">Explorer</button>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6" id="projects-grid">
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="infra defi bridge">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-hyperline.svg"
onerror="this.src='https://placehold.co/100x100?text=HL'" alt="Hyperlane"
class="w-full h-full object-contain">
</div>
<div class="flex flex-col items-end gap-1">
<span
class="px-2 py-1 text-xs font-mono rounded bg-slate-100 text-slate-800 dark:bg-slate-800 dark:text-slate-300 border border-transparent dark:border-slate-700">Infra</span>
<span
class="px-2 py-1 text-xs font-mono rounded bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-300 border border-transparent dark:border-indigo-800/50">Bridge</span>
</div>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Hyperlane</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
The permissionless interoperability layer connecting Kadena to the modular blockchain world.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/hyperlane" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.hyperlane.xyz/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="infra defi bridge">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-flux.svg"
onerror="this.src='https://placehold.co/100x100?text=FX'" alt="Flux"
class="w-full h-full object-contain">
</div>
<div class="flex flex-col items-end gap-1">
<span
class="px-2 py-1 text-xs font-mono rounded bg-slate-100 text-slate-800 dark:bg-slate-800 dark:text-slate-300 border border-transparent dark:border-slate-700">Infra</span>
<span
class="px-2 py-1 text-xs font-mono rounded bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-300 border border-transparent dark:border-indigo-800/50">Bridge</span>
</div>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Flux</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
Decentralized Web3 cloud infrastructure offering scalable computing and
blockchain-as-a-service.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/RunOnFlux" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://runonflux.com/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="dex defi">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-mercatus.svg"
onerror="this.src='https://placehold.co/100x100?text=M'" alt="Mercatus"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-300 border border-transparent dark:border-blue-800/50">DEX</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Mercatus</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A decentralized exchange DEX facilitating secure and trustless trading.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/MercOnKadena" target="_blank" class="hover:text-brand transition-colors"
aria-label="Mercatus on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.mercatus.works/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Mercatus Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="dex defi">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-brodex.svg"
onerror="this.src='https://placehold.co/100x100?text=B'" alt="Brodex"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-300 border border-transparent dark:border-blue-800/50">DEX</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Brodex</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A community-driven decentralized exchange offering seamless swaps and liquidity pools.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/thebrothersdao" target="_blank"
class="hover:text-brand transition-colors" aria-label="Brodex on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://dex.bro.pink/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Brodex Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-theBrothersDao.svg"
onerror="this.src='https://placehold.co/100x100?text=DAO'" alt="Brothers DAO"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">The Brothers DAO</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A decentralized autonomous organization building products and fostering community on Kadena.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/thebrothersdao" target="_blank"
class="hover:text-brand transition-colors" aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.bro.pink/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-kishu.svg"
onerror="this.src='https://placehold.co/100x100?text=KK'" alt="Kishu Ken"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Kishu Ken</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A community-centric project bringing meme culture and utility to the Kadena ecosystem.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/Kishu_Ken_KDA" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://kishuken.me/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-azuki.svg"
onerror="this.src='https://placehold.co/100x100?text=AZ'" alt="Azuki"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Azuki</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A vibrant community project focused on engagement and growth within the ecosystem.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/AzukiKDA" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://azukionkadena.fun/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community defi mining">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-chipsfinance.svg"
onerror="this.src='https://placehold.co/100x100?text=CH'" alt="Chips"
class="w-full h-full object-contain">
</div>
<div class="flex flex-col items-end gap-1">
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
<span
class="px-2 py-1 text-xs font-mono rounded bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-300 border border-transparent dark:border-yellow-800/50">Mining</span>
</div>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Chips Finance</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
Gamified DeFi and Mining protocol allowing users to earn rewards through liquidity
provision.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/Chips_Finance" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.chips.finance/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-unnit.svg"
onerror="this.src='https://placehold.co/100x100?text=UN'" alt="Unitt"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Unitt</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A tokenized chat application rewarding users for content and engagement on-chain.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/UNITT_io" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.unitt.io/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community game nft">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-wizards.svg"
onerror="this.src='https://placehold.co/100x100?text=WZ'" alt="Wizards Arena"
class="w-full h-full object-contain">
</div>
<div class="flex flex-col items-end gap-1">
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
<span
class="px-2 py-1 text-xs font-mono rounded bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-300 border border-transparent dark:border-red-800/50">Game</span>
</div>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Wizards Arena</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A P2E RPG game on Kadena where you battle, upgrade wizards, and earn rewards.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/WizardsArena" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://linktr.ee/wizardsarena" target="_blank"
class="hover:text-brand transition-colors" aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community nft">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-herron.svg"
onerror="this.src='https://placehold.co/100x100?text=HH'" alt="Heron Heroes"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Heron Heroes</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
An exclusive NFT collection focused on building a strong community and future utility.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/HeronHeroesKDA" target="_blank"
class="hover:text-brand transition-colors" aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.heronheroes.com/welcome" target="_blank"
class="hover:text-brand transition-colors" aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="nft">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-kittykad.svg"
onerror="this.src='https://placehold.co/100x100?text=KK'" alt="Kitty Kad"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-pink-100 text-pink-800 dark:bg-pink-900/30 dark:text-pink-300 border border-transparent dark:border-pink-800/50">NFT</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Kitty Kad</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A community-driven NFT project with unique digital collectibles on the Kadena blockchain.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/KittyKadToken" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://kittykad.com/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="community defi">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-kadpad.svg "
onerror="this.src='https://placehold.co/100x100?text=KP'" alt="KADPAD"
class="w-full h-full object-contain">
</div>
<div class="flex flex-col items-end gap-1">
<span
class="px-2 py-1 text-xs font-mono rounded bg-orange-100 text-orange-800 dark:bg-orange-900/30 dark:text-orange-300 border border-transparent dark:border-orange-800/50">Community</span>
<span
class="px-2 py-1 text-xs font-mono rounded bg-fuchsia-100 text-fuchsia-800 dark:bg-fuchsia-900/30 dark:text-fuchsia-300 border border-transparent dark:border-fuchsia-800/50">Launchpad</span>
</div>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">KADPAD</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
The first decentralized IDO Launchpad on the Kadena Network.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/kadpadxyz" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://kadpad.xyz/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="oracles defi">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-dia.svg"
onerror="this.src='https://placehold.co/100x100?text=DIA'" alt="DIA"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-teal-100 text-teal-800 dark:bg-teal-900/30 dark:text-teal-300 border border-transparent dark:border-teal-800/50">Oracle</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">DIA</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
Open-source oracle platform creating transparent data feeds for the DeFi ecosystem.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/DIAdata_org" target="_blank" class="hover:text-brand transition-colors"
aria-label="X Profile">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://link3.to/dia" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="oracles tools">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-kia.svg"
onerror="this.src='https://placehold.co/100x100?text=K'" alt="Kia"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-teal-100 text-teal-800 dark:bg-teal-900/30 dark:text-teal-300 border border-transparent dark:border-teal-800/50">Oracle</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Kia</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
Kadena Info Access. A community-led oracle solution for the Kadena blockchain.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://github.com/kda-community/kadena-info-access" target="_blank"
class="hover:text-brand transition-colors" aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="exchanges">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-gate.svg"
onerror="this.src='https://placehold.co/100x100?text=G'" alt="Gate.io"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-300 border border-transparent dark:border-green-800/50">Exchange</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Gate.io</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A leading global exchange offering deep liquidity for KDA and advanced trading tools.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/Gate" target="_blank" class="hover:text-brand transition-colors"
aria-label="Gate on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.gate.com/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Gate Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="exchanges">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-coinex.svg"
onerror="this.src='https://placehold.co/100x100?text=CX'" alt="CoinEx"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-300 border border-transparent dark:border-green-800/50">Exchange</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">CoinEx</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
User-friendly global exchange known for its low fees and automated market making (AMM).
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/coinexcom" target="_blank" class="hover:text-brand transition-colors"
aria-label="CoinEx on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://www.coinex.com/en" target="_blank" class="hover:text-brand transition-colors"
aria-label="CoinEx Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="exchanges">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-coimetro.svg"
onerror="this.src='https://placehold.co/100x100?text=CM'" alt="CoinMetro"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-300 border border-transparent dark:border-green-800/50">Exchange</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">CoinMetro</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
Fully regulated exchange offering easy fiat on-ramps and integrated KDA staking.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/CoinMetro" target="_blank" class="hover:text-brand transition-colors"
aria-label="CoinMetro on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://coinmetro.com/" target="_blank" class="hover:text-brand transition-colors"
aria-label="CoinMetro Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="nft tools protocol">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-marmaladeNg.svg"
onerror="this.src='https://placehold.co/100x100?text=M'" alt="Logo"
class="w-full h-full object-contain">
</div>
<div class="flex flex-col items-end gap-1">
<span
class="px-2 py-1 text-xs font-mono rounded bg-pink-100 text-pink-800 dark:bg-pink-900/30 dark:text-pink-300 border border-transparent dark:border-pink-800/50">NFT</span>
<span
class="px-2 py-1 text-xs font-mono rounded bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-300 border border-transparent dark:border-indigo-800/50">Protocol</span>
</div>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Marmalade</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
The standard for NFTs on Kadena. Poly-fungible, enforced royalties.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/marmalade_ng" target="_blank" class="hover:text-brand transition-colors"
aria-label="Marmalade-NG on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="#" class="hover:text-brand transition-colors"><svg class="w-5 h-5" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg></a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="bridge defi">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-kinesisBridge.svg"
onerror="this.src='https://placehold.co/100x100?text=B'" alt="Logo"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-indigo-100 text-indigo-800 dark:bg-indigo-900/30 dark:text-indigo-300 border border-transparent dark:border-indigo-800/50">Bridge</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">Kadena Bridge</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
Securely transfer assets between Kadena and Ethereum.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://x.com/kinesisxyz" target="_blank" class="hover:text-brand transition-colors"
aria-label="Marmalade-NG on X">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
<a href="https://kinesisbridge.xyz/" class="hover:text-brand transition-colors"><svg
class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg></a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="explorer tools">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="img/ecosystem/ecosystem-denascan.svg"
onerror="this.src='https://placehold.co/100x100?text=DS'" alt="Denascan"
class="w-full h-full object-contain">
</div>
<span
class="px-2 py-1 text-xs font-mono rounded bg-sky-100 text-sky-800 dark:bg-sky-900/30 dark:text-sky-300 border border-transparent dark:border-sky-800/50">Explorer</span>
</div>
<div class="flex-grow">
<h3 class="text-xl font-bold mb-2">DenaScan</h3>
<p class="text-sm text-gray-600 dark:text-gray-400 mb-6 line-clamp-2">
A powerful block explorer for the Kadena network, providing real-time data and insights.
</p>
</div>
<div class="flex items-center space-x-3 text-gray-400">
<a href="https://denascan.com/" target="_blank" class="hover:text-brand transition-colors"
aria-label="Website">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9">
</path>
</svg>
</a>
</div>
</div>
<div class="project-card group h-full flex flex-col relative p-6 bg-white dark:bg-surface-card border border-gray-200 dark:border-gray-800 rounded-2xl hover:border-brand dark:hover:border-brand transition-all duration-300 hover:-translate-y-1 shadow-sm"
data-category="explorer tools">
<div class="flex items-start justify-between mb-4">
<div
class="w-14 h-14 rounded-xl bg-gray-100 dark:bg-gray-800 p-2 flex items-center justify-center border border-gray-200 dark:border-gray-700 overflow-hidden">