-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
975 lines (945 loc) · 43.2 KB
/
index.html
File metadata and controls
975 lines (945 loc) · 43.2 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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>An open source operating system for communities</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/favicon.png" type="image/png">
<link rel="shortcut icon" type="image/png" href="/wp-content/themes/fuse-v2/assets/images/favicon.ico" />
<link rel="dns-prefetch" href="//s.w.org" />
<link
rel="stylesheet"
id="display-medium-posts-css"
href="wp-content/plugins/display-medium-posts-master/public/css/display-medium-posts-public.css"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="ace-owl-carousel-css"
href="wp-content/plugins/display-medium-posts-master/public/vendors/owl-carousel/owl.carousel.css"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="ace-owl-theme-css"
href="wp-content/plugins/display-medium-posts-master/public/vendors/owl-carousel/owl.theme.css"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="font-awesome-css"
href="wp-content/themes/fuse-v2/assets/fonts/font-awesome-4.7.0/css/font-awesome.min.css"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="animate-css"
href="wp-content/themes/fuse-v2/assets/css/animate-min.css"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="screen-css"
href="wp-content/themes/fuse-v2/style.css"
type="text/css"
media="screen"
/>
<script
type="text/javascript"
src="wp-includes/js/jquery/jquery.js"
></script>
<script
type="text/javascript"
src="wp-includes/js/jquery/jquery-migrate.min.js"
></script>
<script
type="text/javascript"
src="wp-content/plugins/display-medium-posts-master/public/vendors/owl-carousel/owl.carousel.js"
></script>
<script
type="text/javascript"
src="wp-content/themes/fuse-v2/assets/js/jquery.paroller.min.js"
></script>
<script
type="text/javascript"
src="wp-content/themes/fuse-v2/assets/js/wow.min.js"
></script>
<script
type="text/javascript"
src="wp-content/themes/fuse-v2/assets/js/jquery.flexslider-min.js"
></script>
<script src="https://use.typekit.net/gjt0hkt.js"></script>
<script>
try {
Typekit.load({ async: true });
} catch (e) {}
</script>
<style type="text/css">
.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
</style>
</head>
<body class="home page-template page-template-templates page-template-template-homev3 page-template-templatestemplate-homev3-php page page-id-8 ">
<div class="site-wrapper">
<header class="site-header header-fixed-top">
<div class="container container--flush site-header__container">
<div class="site-header__inner">
<a href="http://PLACEHOLDER.wpsho" class="site-logo logo-black smooth-scroll">
<img alt="logo" src="wp-content/themes/fuse-v2/assets/images/site-logo.svg" class="site-logo__img"/>
</a>
<a href="http://PLACEHOLDER.wpsho" class="site-logo logo-grad smooth-scroll">
<img src="wp-content/themes/fuse-v2/assets/images/site-logo-grad.svg" class="site-logo__img"/>
</a>
<nav class="nav">
<ul id="menu-main-nav" class="nav__menu">
<li
id="menu-item-111"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-111 nav__item"
>
<a href="https://medium.com/colu" class="nav__link">Blog</a>
</li>
<li
id="menu-item-90"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-90 nav__item"
>
<a href="https://explorer.fuse.io/" class="nav__link"
>Explorer</a
>
</li>
<li id="menu-item-92" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-92 nav__item">
<a target="_blank" href="http://beta.fuse.io/network-token" class="nav__link">Token</a>
</li>
<li
id="menu-item-92"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-92 nav__item"
>
<a target="_blank" href="#" class="nav__link">Learn</a>
</li>
<li
id="menu-item-113"
class="nav-btn menu-item menu-item-type-custom menu-item-object-custom menu-item-113 nav__item"
>
<a target="_blank" href="https://communities-qa.cln.network/" class="nav__link">
<span class="wallet__icon wallet__icon--image"><span></span></span>
<span style="font-size: 15px">Connect your wallet</span>
</a>
</li>
</ul>
</nav>
<button
type="button"
class="hamburger-button__container"
id="toggle"
>
<span class="hamburger-button__top"></span>
<span class="hamburger-button__middle"></span>
<span class="hamburger-button__bottom"></span>
</button>
</div>
</div>
</header>
<main>
<section class="section-wrapper wow fadeIn animated">
<div class="hero">
<div class="hero__overlay">
<div class="hero__overlay-inner">
<div class="container container--inner">
<div class="columns hero-columns">
<div
class="columns__column columns__column--half hero__content"
>
<h1 class="hero__title">
An open source operating system for communities
</h1>
<p class="hero__text">
Fusing together Web3 protocols to bring the future of
decentralised finance to communities worldwide.
</p>
</div>
</div>
</div>
</div>
</div>
<img
src="wp-content/themes/fuse-v2/assets/images/fuse-hero-home.svg"
height=""
width=""
class="hero__image"
/>
</div>
</section>
<section class="section-wrapper intro-content__community">
<div class="container container--inner intro-content__container">
<div class="columns">
<div
class="columns__column columns__column--half wow fadeIn animated"
data-wow-delay=".5s"
>
<div class="intro-content__content">
<h2 class="intro-content__text">Make Community <br />Currencies useful</h2>
<div class="intro-content__text">
<p>
Easily launch you own blockchain based community that allows shared ownership, shared goals and unprecedented
transparency powered by smart contracts.
</p>
<a href="https://communities-qa.cln.network/" class="btn btn--rounded btn--primary m-t-md"
>Launch your community</a
>
</div>
</div>
</div>
<div
class="columns__column columns__column--half wow fadeIn animated"
data-wow-delay=".5s"
>
<div class="content-flex">
<img
src="wp-content/themes/fuse-v2/assets/images/fuse-home-community.svg"
height=""
width=""
class="intro-content__community-img"
/>
</div>
</div>
</div>
</div>
</section>
<section class="section-wrapper intro-content__people">
<div class="container container--inner intro-content__container">
<div class="columns intro-content--col">
<div
class="columns__column columns__column--half wow fadeIn animated"
data-wow-delay=".75s"
>
<div class="content-flex">
<img
src="wp-content/themes/fuse-v2/assets/images/fuse-home-people.svg"
height=""
width=""
class="intro-content__people-img"
/>
</div>
</div>
<div
class="columns__column columns__column--half wow fadeIn animated"
data-wow-delay=".75s"
>
<div class="intro-content__content">
<h2 class="intro-content__text">People powered money</h2>
<div class="intro-content__text">
<p>
Blockchain technology allows us the rethink how we
interact with value, allowing new business models to be imagined by giving users more control and fueling growth bottom-up.
</p>
<a
href=""
class="btn btn--rounded btn--bordered-primary m-t-md"
>Click here to learn more</a
>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-wrapper content-cta-group main-content">
<div class="container container--inner content-cta-group__inner wow fadeIn animated" data-wow-delay=".75s">
<div class="columns columns__space">
<div class="columns__column columns__column--third content-cta-group__column">
<h3 class="content-partners__title">Get Fuse Updates</h3>
<div id="sendgrid_nlvx_widget-2" class="widget site-footer__widget widget_sendgrid_nlvx_widget">
<div class="github-wrapper">
<form
method="post"
id="sendgrid_mc_email_form"
class="mc_email_form"
action="#sendgrid_mc_email_subscribe"
style="padding-top: 10px;"
>
<div
class="sendgrid_mc_fields"
style="padding: 10px 0px 0px 0px;"
>
<div class="sendgrid_mc_label_div">
<label
for="sendgrid_mc_email"
class="sendgrid_mc_label sendgrid_mc_label_email"
>Email<sup>*</sup> :</label
>
</div>
<div class="sendgrid_mc_input_div">
<input
class="sendgrid_mc_input sendgrid_mc_input_email"
id="sendgrid_mc_email"
name="sendgrid_mc_email"
type="text"
value=""
required
/>
</div>
</div>
<div class="sendgrid_mc_button_div">
<input
style="margin: 10px 0px 0px 0px;"
class="sendgrid_mc_button"
id="sendgrid_mc_email_submit"
value="SUBSCRIBE"
/>
</div>
<div class="github-wrapper">
<button value="SUBSCRIBE" type="submit" class="btn btn--dark btn--medium btn--rounded"><a href="<" style="text-decoration: unset">Enter</a></button>
</div>
</form>
</div>
</div>
</div>
<div class="columns__column columns__column--third content-cta-group__column">
<h3 class="content-partners__title">Join as a Parter</h3>
<div class="github-wrapper">
<p>
Built as a public infrastructure and meant to connect users to
service providers and sharing resources between organizations
</p>
</div>
<div class="github-wrapper">
<a class="btn btn--dark btn--medium btn--rounded" href="<">Get in touch</a>
</div>
</div>
<div class="columns__column columns__column--third content-cta-group__column">
<h3 class="content-partners__title">Developers</h3>
<div class="github-wrapper">
<p class="content-cta-group__column__content">
Join the Web3 & open source movement, collaborate on real
projects with real communities.
</p>
</div>
<div class="github-wrapper github-wrapper--links">
<a class="btn btn--dark btn--medium btn--rounded" href="https://colulocalnetwork.github.io/fuse-inventory-manager/">Learn more</a>
<a class="btn--link btn--github" href="https://github.com/FuseNetwork">Visit our Github</a>
</div>
</div>
</div>
</div>
</section>
<section class="medium-news">
<div class="content__item--lg content--centre bg--white">
<div class="container container--inner">
<h3 class="h2 m-b-0">News</h3>
</div>
</div>
<div
class="content__item--lg content__item--no-top medium-news__content"
>
<div
class="container container--inner wow fadeIn animated"
data-wow-delay=".75s"
>
<div
id="display-medium-owl-demo"
class="display-medium-owl-carousel"
>
<div class="display-medium-item">
<a
href="https://medium.com/colu/announcing-side-chains-for-community-currencies-poa-and-cln-collaboration-df78d938a194"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/1*-lthUa1Ax_SFQpyZZj_5uw.jpeg"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Announcing Side Chains for Community Currencies— POA and
CLN Collaboration
</h5>
</a>
<p class="display-medium-subtitle">
Building an infrastructure for Entrepreneurs, Community
Managers & Organisations to easily integrate blockchain
capabilities into their…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/announcing-side-chains-for-community-currencies-poa-and-cln-collaboration-df78d938a194"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/berlin-summit-part-1-web3-for-dummies-16c943dcea65"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/1*eW1q6PGJkKQLuySVUxJcbw.jpeg"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Berlin Summit Part 1 — Web3 for dummies!
</h5>
</a>
<p class="display-medium-subtitle">
After 30 years of the internet, a relatively small band of
people believe its time for a different future. Let’s try to
get everyone else…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/berlin-summit-part-1-web3-for-dummies-16c943dcea65"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/building-tools-for-community-managers-a-considered-approach-a8ce40f85bb"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/1*9Y8kQRpq-iRBRu230qThDw.png"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Building tools for community managers, a considered
approach
</h5>
</a>
<p class="display-medium-subtitle">
The crypto space is in the pursuit of scalable but also
mainstream friendly payment capabilities on the blockchain.
The name of the game in…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/building-tools-for-community-managers-a-considered-approach-a8ce40f85bb"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/announcing-the-cln-api-sdk-98295c955fb4"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/1*jq16szUVSyoG_Wbzw6aXkg.png"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Announcing the CLN API/SDK
</h5>
</a>
<p class="display-medium-subtitle">
One of our goals at the CLN is making access to blockchain
technology easier for the masses to engage with and use.
This task entails…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/announcing-the-cln-api-sdk-98295c955fb4"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/top-5-crypto-initiatives-making-the-world-a-better-place-4f66f796ce66"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/0*i85nOSc74LLFQBfP"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Top 5 crypto initiatives making the world a better place
</h5>
</a>
<p class="display-medium-subtitle">
Cryptocurrency is not just about trading. As the industry
continues to boom, more and more practical applications are
increasingly being…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/top-5-crypto-initiatives-making-the-world-a-better-place-4f66f796ce66"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/meet-the-nba-franchise-mining-crypto-for-the-community-e3044dee161"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/0*vST1necErfrTDYMg"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Meet the NBA Franchise Mining Crypto For The Community
</h5>
</a>
<p class="display-medium-subtitle">
Yes, you did read that headline correctly! The Sacramento
Kings play in the world’s biggest and best basketball league
— The NBA. And they…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/meet-the-nba-franchise-mining-crypto-for-the-community-e3044dee161"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/everyday-payments-with-crypto-is-closer-than-you-think-99a66256d449"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/0*WCcHssDaaq2IwdKX"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Everyday payments with Crypto is Closer than You Think
</h5>
</a>
<p class="display-medium-subtitle">
We are in an exciting period of time when it comes to crypto
currencies today. Like the early days of the Internet,
nobody is quite sure…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/everyday-payments-with-crypto-is-closer-than-you-think-99a66256d449"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/we-are-pleased-to-announce-bradley-tusk-is-joining-colu-as-an-advisor-b5b0892dd60c"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/0*6Eoo1zMshSsY_gin.jpg"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
We are pleased to announce Bradley Tusk is joining Colu as
an advisor
</h5>
</a>
<p class="display-medium-subtitle">
We are excited to announce that Bradley Tusk will be joining
Colu as an advisor.
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/we-are-pleased-to-announce-bradley-tusk-is-joining-colu-as-an-advisor-b5b0892dd60c"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/say-hello-to-the-new-community-currencies-9ea897ec8b78"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/1*MmHq8mJol_Mc9SKKhhKOXw.png"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Say Hello to the New Community Currencies!
</h5>
</a>
<p class="display-medium-subtitle">
It’s finally here! After a two week period in which the
users in our three communities have worked to become
eligible to receive the…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/say-hello-to-the-new-community-currencies-9ea897ec8b78"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
<div class="display-medium-item">
<a
href="https://medium.com/colu/why-the-visa-blackout-should-signal-a-new-crypto-driven-dawn-7e118460daab"
target="_blank"
>
<div
data-src="//cdn-images-1.medium.com/max/500/0*vPRMOhWpCBmZR9cQ"
class="lazyOwl medium-image"
></div>
<h5 class="display-medium-title details-title">
Why the VISA blackout should signal a new crypto-driven
dawn
</h5>
</a>
<p class="display-medium-subtitle">
The serious disruption to VISA payments across Europe seems
to have been resolved — In an operational sense at least,
things appear to be…
</p>
<p class="display-medium-date-read">
<a
href="https://medium.com/colu/why-the-visa-blackout-should-signal-a-new-crypto-driven-dawn-7e118460daab"
target="_blank"
class="btn btn--rounded btn--primary text-right display-medium-readmore"
>Read More</a
>
</p>
</div>
</div>
<script type="text/javascript">
function initializeOwl(count) {
jQuery(".display-medium-owl-carousel").owlCarousel({
items: count,
lazyLoad: true
});
}</script
><script>
initializeOwl(4);
</script>
</div>
</div>
</section>
<section class="section-wrapper content-software">
<div
class="container container--inner content-software__container wow fadeIn animated"
data-wow-delay=".75s"
>
<div class="content__item--lg">
<h3 class="h2 heading--yellow">Fuse Software Stack</h3>
</div>
<div class="content__item--lg content__item--no-top">
<div class="columns columns-software__columns">
<div class="columns__column column--tabs">
<div class="tab">
<a
class="tablinks"
onclick="openCity(event, 'Brain')"
id="defaultOpen"
>
<img
alt="consumers"
src="wp-content/themes/fuse-v2/assets/images/consumer_regular.svg"
width=""
height=""
class="stack__icon"/>
<img
alt="consumers"
src="wp-content/themes/fuse-v2/assets/images/consumer_selected.svg"
width=""
height=""
class="stack__icon stack__icon--fill"
/>
</a>
<a
class="tablinks"
onclick="openCity(event, 'Skin')"
id="shake-tab"
>
<img
src="wp-content/themes/fuse-v2/assets/images/stack-ent--stroke.svg"
width=""
height=""
class="stack__icon"/><img
src="wp-content/themes/fuse-v2/assets/images/stack-ent--fill.svg"
width=""
height=""
class="stack__icon stack__icon--fill"
/></a>
<a class="tablinks" onclick="openCity(event, 'Heart')">
<img
src="wp-content/themes/fuse-v2/assets/images/stack-block--stroke.svg"
width=""
height=""
class="stack__icon"/><img
src="wp-content/themes/fuse-v2/assets/images/stack-block--fill.svg"
width=""
height=""
class="stack__icon stack__icon--fill"
/></a>
</div>
</div>
<div class="columns__column column--tabcontent">
<div class="tabcontent__wrap">
<div id="Brain" class="tabcontent">
<div class="tabcontent__inner">
<div class="tabcontent__text">
<div><span class="tabcontent__icon icon__customers"> <a href="#"></a></span></div>
<h3 class="h2 title--secondary title--light tabcontent__title">
Consumers
</h3>
<p>
Open source Flutter based wallet app for Android and
iOS provides clean and basic interface for ERC-20 coins that hides a lot of complexity for the user.
<br> <b>BETA</b>>
</p>
</div>
<ul class="links__list">
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="https://github.com/ColuLocalNetwork/FuseWallet">Follow the repo on Github <span class="icon icon-arrow"><a ></a></span></a></span></li>
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="https://www.youtube.com/watch?time_continue=3&v=fq4N0hgOWzU">What is Flutter? <span class="icon icon-arrow"><a ></a></span></a></span></li>
<li class="link__item"><span>Get a demo to your phone:</span></li>
</ul>
<div class="icons-wrapper">
<a href="https://play.google.com/store/apps/details?id=com.creatix.fusewallet&ah=EIEqEnWofYf4PPvIOy7_7ePzwRg"><span class="icon icon__google-play"></span></a>
<a href="https://testflight.apple.com/join/CQKLoJje"><span class="icon icon__app-store"></span></a>
</div>
</div>
</div>
<div id="Skin" class="tabcontent">
<div class="tabcontent__inner">
<div class="tabcontent__text">
<div><span class="tabcontent__icon icon__entrepeneurs"> <a href="#"></a></span></div>
<h3 class="h2 title--secondary title--light tabcontent__title">
Entrepeneurs
</h3>
<p>
The layer for businesses and entrepreneurs that can
launch their community currency providing access to a business
logic chosen from a contract store and access to
the network services.
</p>
</div>
<ul class="links__list">
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="https://communities-qa.cln.network/">Fuse studio <span class="icon icon-arrow"><a ></a></span></a></span></li>
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="https://github.com/ColuLocalNetwork/fuse-inventory-manager">Inventory manager <span class="icon icon-arrow"><a ></a></span></a></span></li>
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="">FAQ <span class="icon icon-arrow"><a ></a></span></a></span></li>
</ul>
</div>
</div>
<div id="Heart" class="tabcontent">
<div class="tabcontent__inner">
<div class="tabcontent__text">
<div><span class="tabcontent__icon icon__blockchain"> <a href="#"></a></span></div>
<h3 class="h2 title--secondary title--light tabcontent__title">
Blockchain
</h3>
<p>
Fuse-chain is an Ethereum sidechain with a bridge to
Ethereum mainnet. Community currencies are issued on
mainnet and then moved to the sidechain for faster
and cheaper transactions with a service tailor made
for communities
</p>
</div>
<ul class="links__list">
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="https://explorer.fuse.io/">Explorer <span class="icon icon-arrow"><a ></a></span></a></span></li>
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="https://docs.google.com/forms/d/1EhOObfbDjKkHQaAVgE1EC6eIO286-GQLoUF5B5oOefo/edit?ts=5bfbffac">Become a validator <span class="icon icon-arrow"><a ></a></span></a></span></li>
<li class="link__item"><span><a class="no-hover-effect" target="_blank" href="">Use the bridge <span class="icon icon-arrow"><a ></a></span></a></span></li>
</ul>
</div>
</div>
</div>
<div class="tabcontent__marker"></div>
</div>
</div>
</div>
</div>
<div class="overlay--gradient"></div>
</section>
<section class="mc-form bg--grad">
<div class="container container--inner">
<div
class="content main-content wow fadeIn animated"
data-wow-delay=".75s"
>
<h3 class="h2">Get Fuse Updates</h3>
<div
id="sendgrid_nlvx_widget-2"
class="widget site-footer__widget widget_sendgrid_nlvx_widget"
>
<form
method="post"
id="sendgrid_mc_email_form"
class="mc_email_form"
action="#sendgrid_mc_email_subscribe"
style="padding-top: 10px;"
>
<div
class="sendgrid_mc_fields"
style="padding: 10px 0px 0px 0px;"
>
<div class="sendgrid_mc_label_div">
<label
for="sendgrid_mc_email"
class="sendgrid_mc_label sendgrid_mc_label_email"
>Email<sup>*</sup> :</label
>
</div>
<div class="sendgrid_mc_input_div">
<input
class="sendgrid_mc_input sendgrid_mc_input_email"
id="sendgrid_mc_email"
name="sendgrid_mc_email"
type="text"
value=""
required
/>
</div>
</div>
<div class="sendgrid_mc_button_div">
<input
style="margin: 10px 0px 0px 0px;"
class="sendgrid_mc_button"
type="submit"
id="sendgrid_mc_email_submit"
value="SUBSCRIBE"
/>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container container--inner">
<div class="columns">
<div class="columns__column columns__column--half">
<h5>Community</h5>
<div class="menu-social-menu-container">
<ul id="menu-social-menu" class="menu">
<li
id="menu-item-93"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93"
>
<a href="http://facebook.com">Facebook</a>
</li>
<li
id="menu-item-95"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-95"
>
<a href="https://twitter.com/CLN_Network">Twitter</a>
</li>
<li
id="menu-item-96"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-96"
>
<a href="http://instagram.com">Instagram</a>
</li>
<li
id="menu-item-98"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-98"
>
<a href="https://github.com/ColuLocalNetwork">Github</a>
</li>
<li
id="menu-item-99"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-99"
>
<a href="https://www.reddit.com/">Reddit</a>
</li>
</ul>
</div>
</div>
<div class="columns__column columns__column--half">
<div class="columns footer-nav__columns">
<div class="columns__column footer-nav__column">
<nav class="nav m-r-lg">
<div class="menu-footer-nav-container">
<ul id="menu-footer-nav" class="footer__menu">
<li
id="menu-item-112"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-112"
>
<a target="_blank" href="https://medium.com/colu"
>Blog</a
>
</li>
<li
id="menu-item-103"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-103"
>
<a target="_blank" href="https://explorer.fuse.io/"
>Explorer</a
>
</li>
<li
id="menu-item-172"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-172"
>
<a href="network-token/index.html">Network Token</a>
</li>
<li
id="menu-item-105"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-105"
>
<a href="#">Learn</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="columns__column footer-nav__column">
<nav class="nav">
<div class="menu-footer-nav-2-container">
<ul id="menu-footer-nav-2" class="footer__menu">
<li
id="menu-item-101"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-101"
>
<a href="#">Developers</a>
</li>
<li
id="menu-item-100"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-100"
>
<a href="#">Entrepreneurs</a>
</li>
<li
id="menu-item-102"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-102"
>
<a href="#">Partners</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<script
type="text/javascript"
src="wp-content/plugins/display-medium-posts-master/public/js/display-medium-posts-public.js"></script><script
type="text/javascript"
src="wp-content/themes/fuse-v2/assets/js/scripts.js"
></script>
</body>
</html>