-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1683 lines (1543 loc) · 50.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
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>
<!-- for zcn.wasm-->
<script src="https://cdn.jsdelivr.net/gh/herumi/[email protected]/browser/bls.js"></script>
<script src="https://cdn.jsdelivr.net/gh/golang/[email protected]/misc/wasm/wasm_exec.js"></script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="blockchain, decentralize, web3, storage, 0Chain, dStorage, crypto "
/>
<meta
name="description"
content="Power your customer engagement, reach, and site uptime with decentralized storage.
Decentralize your entire project with our SDK. Start by adding a video hosted on 0Chain dStorage
Join the Limitless Future Now"
/>
<!-- /****** Open Graph / Facebook ******/ -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lp.zus.network/sdk" />
<meta property="og:title" content="Züs SDK" />
<meta property="og:description" content="Power your customer engagement,
reach, and site uptime with decentralized storage. Decentralize your entire
project with our SDK. Start by adding a video hosted on 0Chain dStorage Join
the Limitless Future Now"" />
<meta property=" og:image" content="images/websitedata/showcaseArt.png" />
<!-- /****** Twitter ******/ -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="images/websitedata/showcaseArt.png" />
<meta property="twitter:title" content="Züs SDK" />
<meta
property="twitter:description"
content="Power your customer
engagement, reach, and site uptime with decentralized storage. Decentralize
your entire project with our SDK. Start by adding a video hosted on 0Chain
dStorage Join the Limitless Future Now"
/>
<meta property=" twitter:image" content="" />
<meta name="twitter:image:alt" content="OChain - dStorage " />
<!-- Fav Icon -->
<link rel="shortcut icon" href="images/favicon.ico" />
<!-- Site Title -->
<title>Züs SDK</title>
<!-- Shaka Player compiled library: -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/shaka-player/4.2.0/shaka-player.compiled.js"
integrity="sha512-IMJEFntnvRlPQ309TGE/4MEGA8t7w8+7WsThxt4CT4bXsl8AlhffJAJYYFd0i0hMw5Ylxct1hlaAmMmvB2wq7w=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script> -->
<!-- CSS -->
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="css/globals.css" />
<link rel="stylesheet" href="css/websitedata.css" />
<link rel="stylesheet" href="css/lpmodals.css" />
<!-- <link rel="stylesheet" href="css/hero.css" /> -->
<link rel="stylesheet" href="css/main.css" />
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-74JNFGDP42"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-74JNFGDP42");
</script>
</head>
<body>
<main class="main" id="main">
<div class="overlay"></div>
<!-- <video data-imageName="newZusVideo" id="video" poster="poster" playsinline loop muted autoplay></video> -->
<img
data-imageName="poster.png"
id="poster"
src="./images/websitedata/poster.png"
/>
<h1 class="mainHeading" id="title">
High Performance Hybrid & Multi Cloud
</h1>
<p class="paragraph" id="description1">
<!-- Decentralize your entire project with our SDK. Start by adding a video
hosted on 0Chain dStorage. -->
Decentralize your entire project with our SDK. Have unparalleled data
performance, privacy, and security.
</p>
<!-- <h4 class="secondaryHeading" id="joinText">
Get early access and win up to 1000 ZCN through referral
</h4> -->
<div class="emailContainer">
<!-- <input
type="email"
class="emailInput"
id="email"
placeholder="Enter your email"
/>
<button id="signupButton" class="signupBtn signup-btn">
Sign up for the SDK
</button> -->
</div>
<p class="error"></p>
<div
class="custom-captcha g-recaptcha"
data-sitekey="6Lcb0AAjAAAAALD7VOwF1_AupagMN-EoluAKntwa"
></div>
<div class="bottom-text">
<span>
Footage courtesy of: NASA / ESRS
<a href="https://eol.jsc.nasa.gov" target="_blank">
eol.jsc.nasa.gov
</a></span
>
<span>
Footage repair, image processing:
<a
href="https://www.youtube.com/watch?v=7KXGZAEWzn0&t=0s"
target="_blank"
>
‘Orbit’
</a>
Seán Doran
</span>
</div>
</main>
<!-- Hero Section Start-->
<main class="heroContainer">
<div class="heroBackground"></div>
<!-- <Fade cascade duration={800} damping={0.2} direction="up" triggerOnce> -->
<h1 class="heading">The most private cloud<span>.</span></h1>
<!-- <CountDownTimer targetDate={targetDate} /> -->
<h2 class="secondaryHeading">
Build your privacy solution. Store for total protection.
</h2>
<div class="inputForm">
<!-- <input
class="inputBox"
type="email"
name="email"
id="email"
placeholder="Enter your email for mainnet notification"
autocomplete="off"
/>
<button class="button">
<span>Get Notified</span>
</button> -->
</div>
<ul class="socialIcons">
<li>
<a
href="https://discord.com/invite/h3BFjdtCp4"
rel="noreferrer"
target="_blank"
>
<img
data-imageName="discord.svg"
alt="discord"
height="28"
width="28"
priority
/>
</a>
</li>
<li>
<a
href="https://twitter.com/zus_network"
rel="noreferrer"
target="_blank"
>
<img
data-imageName="twitter.svg"
alt="twitter"
height="28"
width="28"
priority
/>
</a>
</li>
<li>
<a href="https://t.me/zus_network" rel="noreferrer" target="_blank">
<img
data-imageName="telegram.svg"
alt="telegram"
height="28"
width="28"
priority
/>
</a>
</li>
</ul>
<!-- <SocialIcons /> -->
<!-- </Fade> -->
</main>
<!--Main Feature Start-->
<section class="mainFeatureContainer">
<div class="mainContent">
<div class="bgPatternLeft"></div>
<div class="bgPatternRight"></div>
<div class="css">
<h2 class="heading">Best Uptime. Total Protection.</h2>
</div>
<div class="css">
<p class="paragraph">
Züs is the first encrypted data sharing network. It is the only
network with a QoS (quality-of-service) protocol to ensure total
protection.
</p>
</div>
</div>
</section>
<!--Main feature End-->
<!--Features Start-->
<div class="featureListWrapper">
<div class="css">
<div class="container" style="min-height: 500px">
<div class="icon">
<span>
<img
data-imageName="storeIcon.png"
sizes="100vw"
decoding="async"
data-nimg="fill"
quality="{80}"
layout="fill"
priority
/></span>
</div>
<div class="textContainer">
<div>
<h3 class="heading">Store</h3>
<p class="paragraph">Store for better protection & uptime</p>
</div>
<a
href="https://zus.network/store/"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black">
<span> Learn More </span>
</button>
</a>
</div>
</div>
</div>
<div class="css">
<div class="container" style="min-height: 500px">
<div class="icon">
<span>
<img
sizes="100vw"
data-imageName="buildIcon.png"
decoding="async"
data-nimg="fill"
quality="{80}"
layout="fill"
priority
/></span>
</div>
<div class="textContainer">
<div>
<h3 class="heading">Build</h3>
<p class="paragraph">Build for privacy</p>
</div>
<a
href="https://zus.network/build/"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black">
<span> Learn More </span>
</button>
</a>
</div>
</div>
</div>
<div class="css">
<div class="container" style="min-height: 500px">
<div class="icon">
<span>
<img
sizes="100vw"
data-imageName="earnIcon.png"
decoding="async"
data-nimg="fill"
quality="{80}"
layout="fill"
priority
/></span>
</div>
<div class="textContainer">
<div>
<h3 class="heading">Earn</h3>
<p class="paragraph">Earn by providing capacity</p>
</div>
<a
href="https://zus.network/earn/"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black">
<span> Learn More </span>
</button>
</a>
</div>
</div>
</div>
</div>
<!--Features End-->
<!--ContainerwithIcon Start-->
<section class="rootWrapper">
<div class="containerWithIcon blimpContainer">
<div class="logo">
<span>
<img
alt="Blimp Logo"
data-imageName="blimpLogo.svg"
decoding="async"
data-nimg="fixed"
/><noscript>
<img
alt="Blimp Logo"
data-imageName="blimpLogo.svg"
decoding="async"
data-nimg="fixed"
loading="lazy"
/></noscript>
</span>
</div>
<div class="ellipseContainer">
<div class="ellipseTop"></div>
<div class="rectangle"></div>
</div>
<div class="blimpArt">
<div
class="css"
style="position: relative; height: 100%; width: 100%"
>
<span>
<img
data-imageName="blimpArt.png"
alt="Blimp"
sizes="100vw"
decoding="async"
data-nimg="fill"
/></span>
</div>
</div>
<div class="textContent">
<div class="css">
<h2 class="heading">
Multi-cloud S3<!-- --><span style="color: #2eb5df">.</span>
</h2>
</div>
<div class="css">
<p class="paragraph">
Use Blimp to design a hybrid & multi-cloud strategy. Configure
for the best uptime and total protection.
</p>
</div>
<div class="css">
<div class="">
<a
href="https://blimp.software/"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black transparent">
<span> Learn More </span>
</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!--ContainerwithIcon end-->
<!--showcase container start-->
<section class="rootWrapper showcasecontainer">
<div class="containerWithIcon">
<div class="ellipseContainer">
<div class="ellipseLeft"></div>
<div class="ellipseRight"></div>
</div>
<div class="showcaseArt">
<img data-imageName="showcaseArt.png" alt="showcase" loading="lazy" />
<img data-imageName="poster2.jpg" id="poster2" />
<!-- <video data-imageName="video2" poster="images/websitedata/poster2.png" playsinline loop muted autoplay
loading="lazy"></video> -->
</div>
<div class="textContentWrapper">
<div class="css">
<h2 class="heading withoutPeriod">Züs SDK<!-- --><span>.</span></h2>
</div>
<div class="css">
<div class="textContent">
<p class="paragraph left">
Use Züs SDK to build privacy apps with encrypted data sharing
</p>
<div class="listContainer">
<div class="bulletTextContainer">
<div>
<ul>
<li></li>
</ul>
</div>
Build a high resolution website<!-- -->
</div>
<div class="bulletTextContainer">
<div>
<ul>
<li></li>
</ul>
</div>
No Cloudfront, Cloudflare, or CDN required<!-- -->
</div>
<div class="bulletTextContainer">
<div>
<ul>
<li></li>
</ul>
</div>
Maximize global reach<!-- -->
</div>
<div class="bulletTextContainer">
<div>
<ul>
<li></li>
</ul>
</div>
Prevent DDoS and single-server attacks<!-- -->
</div>
<div class="bulletTextContainer">
<div>
<ul>
<li></li>
</ul>
</div>
No Censorship<!-- -->
</div>
</div>
</div>
</div>
<div class="css">
<a
href="https://lp.zus.network/sdk"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black transparent">
<span> See it on our demo page </span>
</button>
</a>
</div>
</div>
</div>
</section>
<!--showcase container end-->
<!--vultInfo start-->
<section class="vultInfo rootWrapper">
<div class="containerWithIcon vultContainer">
<div class="logo">
<span style="display: inline-block; width: 70px; height: 50px">
<img
alt="Vult Logo"
data-imageName="vultLogo.svg"
decoding="async"
data-nimg="fixed"
/>
</span>
</div>
<div class="css" style="position: relative">
<div class="vultArt">
<span>
<img
alt="Vult"
sizes="100vw"
data-imageName="vultArt.png"
decoding="async"
data-nimg="fill"
/>
</span>
</div>
</div>
<div class="textContainerWrapper">
<div class="css">
<div class="textContent">
<h2 class="heading">
Personal Cloud<span style="color: rgb(11, 157, 255)">.</span>
</h2>
<p class="paragraph">
Use Vult to store and share encrypted files with friends. Browse
pictures in their pristine quality.
</p>
<a
href="https://zus.network/store/"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black transparent">
<span> Store </span>
</button>
</a>
</div>
</div>
</div>
<div class="ellipseContainer">
<div class="ellipseTop"></div>
<div class="ellipseBottom"></div>
</div>
</div>
</section>
<!--vultInfo end-->
<!--chimneyInfo start-->
<section class="chimneyInfo rootWrapper">
<div class="containerWithIcon">
<div class="logo">
<span style="display: inline-block; width: 40px; height: 40px">
<img
alt="Chimney Logo"
data-imageName="chimneyLogo.svg"
decoding="async"
data-nimg="fixed"
/>
</span>
</div>
<div class="ellipseContainer">
<div class="ellipseTop"></div>
<div class="ellipseBottom"></div>
</div>
<div class="chimneyArt">
<div class="css" style="position: relative">
<span>
<img
alt="Chimney"
sizes="100vw"
data-imageName="chimneyArt.png"
decoding="async"
data-nimg="fill"
/>
</span>
</div>
</div>
<div class="textContent">
<div class="css">
<h2 class="heading">
Plug in & earn<span style="color: rgb(223, 122, 207)">.</span>
</h2>
</div>
<div class="css">
<p class="paragraph">
Chimney makes earning simple. Rent a server or use spare storage
for passive income.
</p>
</div>
<div class="css">
<a
href="https://zus.network/earn/"
target="_black"
rel="noreferrer"
>
<button type="button" class="button black transparent">
<span> Learn More </span>
</button>
</a>
</div>
</div>
</div>
</section>
<!--chimneyInfo end-->
<!--chalkInfo start-->
<section class="chalkInfo rootWrapper">
<div class="containerWithIcon">
<div class="logo">
<span style="display: inline-block; height: 55px; width: 75px">
<img
alt="Chalk Logo"
data-imageName="chalkLogo.svg"
decoding="async"
data-nimg="fixed"
/>
</span>
</div>
<div class="ellipseContainer">
<div class="ellipseTop"></div>
<div class="ellipseBottom"></div>
</div>
<div class="chalkArtMobile">
<div class="css" style="position: relative">
<span style="display: inline-block"
><img
alt="Chalk"
data-imageName="chalkArtMobile.png"
decoding="async"
data-nimg="fixed"
/></span>
</div>
</div>
<div class="textContent">
<div class="css">
<h2 class="heading">
Market your NFT<span style="color: rgb(247, 90, 56)">.</span>
</h2>
</div>
<div class="css">
<p class="paragraph">
Use Chalk to maximize buyer engagement. Add a backstory to
showcase your limitless creativity.
</p>
</div>
<div class="css">
<a href="https://zus.network/nft/" target="_black" rel="noreferrer">
<button type="button" class="button black transparent">
<span> Learn more </span>
</button>
</a>
</div>
</div>
<div class="chalkArtDesktop">
<div class="css" style="position: relative">
<span style="display: inline-block; height: 550px; width: 600px"
><img
alt="Chalk"
data-imageName="chalkArtDesktop.png"
decoding="async"
data-nimg="fixed"
/></span>
</div>
</div>
</div>
</section>
<!--chalkInfo end-->
<!--Private Sharing start-->
<div class="privateSharing">
<h2 class="heading">
How does Private sharing work<span style="color: rgb(23, 91, 255)"
>?</span
>
</h2>
<p class="paragraph">
Züs' private sharing technology ensures complete privacy and security.
Files are divided into fragments, encrypted, and distributed among
multiple storage providers. The sharing proxy key is distributed to
providers, ensuring the process is fully decentralized and that only the
recipient can access and decrypt the files.
</p>
<span>
<img alt="" aria-hidden="true" data-imageName="infographic.png" />
</span>
</div>
<!--Private Sharing end-->
<!--Partners start-->
<div class="partnersContainer">
<h2 class="heading title">
Our Partners
<span style="color: rgb(23, 91, 255)">.</span>
</h2>
<div class="partners">
<figure>
<img data-imageName="huawei.svg" alt="" />
</figure>
<figure>
<img data-imageName="chainlink.svg" alt="" />
</figure>
<figure>
<img data-imageName="polygon.svg" alt="" />
</figure>
<figure>
<img data-imageName="fetchai.svg" alt="" />
</figure>
<figure>
<img data-imageName="ocean.svg" alt="" />
</figure>
<figure>
<img data-imageName="magma.svg" alt="" />
</figure>
<figure>
<img data-imageName="wanchain.svg" alt="" />
</figure>
<figure>
<img data-imageName="geeq.svg" alt="" />
</figure>
<figure>
<img data-imageName="kylin.svg" alt="" />
</figure>
<figure>
<img data-imageName="morpheus-labs.svg" alt="" />
</figure>
<figure>
<img data-imageName="clover.svg" alt="" />
</figure>
<figure>
<img data-imageName="dia.svg" alt="" />
</figure>
<figure>
<img data-imageName="fuse.svg" alt="" />
</figure>
<figure>
<img data-imageName="api3.svg" alt="" />
</figure>
<figure>
<img data-imageName="teraswitch.svg" alt="" />
</figure>
<figure>
<img data-imageName="coresite.svg" alt="" />
</figure>
<figure>
<img data-imageName="cogent.svg" alt="" />
</figure>
<figure>
<img data-imageName="zero.svg" alt="" />
</figure>
<figure>
<img data-imageName="unihost.svg" alt="" />
</figure>
<figure>
<img data-imageName="velia.svg" alt="" />
</figure>
</div>
</div>
<!--Partners end-->
<!--FAQ start-->
<div class="FAQ_container">
<div class="FAQ_header">
<h1 class="FAQ_title">Frequently Asked Questions</h1>
<div class="FAQ_description">
See below for our most frequently asked questions. For more
information, visit our
<a
href="https://discord.com/invite/h3BFjdtCp4"
target="_blank"
rel="noreferrer"
>Discord</a
>,
<a href="https://github.com/0chain" target="_blank" rel="noreferrer"
>GitHub</a
>,
<a href="https://api.zus.network" target="_blank" rel="noreferrer"
>API</a
>, and
<a href="https://docs.zus.network" target="_blank" rel="noreferrer"
>Documentation</a
>
pages
</div>
</div>
<div class="FAQ_content">
<div class="Accordion_container">
<div class="Accordion_line"></div>
<div class="Accordion_header">
<h2 class="Accordion_title">What is Züs?</h2>
<img
data-imageName="plus.svg"
decoding="async"
data-nimg="intrinsic"
/>
</div>
<div class="Accordion_children">
<div>
<span class="FAQ_faq"
>Züs is the most private cloud. Use Züs to build your privacy
solution and store for total protection. Züs is the first
decentralized encrypted data sharing network. It is the only
network with a QoS (quality-of-service) protocol to ensure total
protection.</span
>
</div>
</div>
</div>
<div class="Accordion_container">
<div class="Accordion_line"></div>
<div class="Accordion_header">
<h2 class="Accordion_title">How does Züs help with GDPR?</h2>
<img
data-imageName="plus.svg"
decoding="async"
data-nimg="intrinsic"
/>
</div>
<div class="Accordion_children">
<div>
<span class="FAQ_faq"
>Given the data is tracked for all file operations on the
Blobber, we provide a capability to generate privacy reports on
the Blimp app. Also since the data is controlled by the user or
customer, storing on Züs is a naturally GDPR compliant storage
solution.</span
>
</div>
</div>
</div>
<div class="Accordion_container">
<div class="Accordion_line"></div>
<div class="Accordion_header">
<h2 class="Accordion_title">What are Miners and Sharders?</h2>
<img
data-imageName="plus.svg"
decoding="async"
data-nimg="intrinsic"
/>
</div>
<div class="Accordion_children">
<div>
<span class="FAQ_faq"
>Miners processes transactions from the client and challenges
Blobbers to ensure storage integrity and performance. Sharders
store the blockchain history and respond to queries.</span
>
</div>
</div>
</div>
<div class="Accordion_container">
<div class="Accordion_line"></div>
<div class="Accordion_header">
<h2 class="Accordion_title">What is a Blobber?</h2>
<img
data-imageName="plus.svg"
decoding="async"
data-nimg="intrinsic"
/>
</div>
<div class="Accordion_children">
<div>
<span class="FAQ_faq"
>A Blobber is a storage provider on the Züs network. They are
decentralized servers all over the world that connect to Züs
network to earn ZCN by providing our users with the storage they
need.</span
>
</div>
</div>
</div>
<div class="Accordion_container">
<div class="Accordion_line"></div>
<div class="Accordion_header">
<h2 class="Accordion_title">
Are Miners and Sharders centralized?
</h2>
<img
data-imageName="plus.svg"
decoding="async"
data-nimg="intrinsic"
/>
</div>
<div class="Accordion_children">
<div>
<span class="FAQ_faq"
>Miners and Sharders are a limited core group of the Züs
ecosystem, but they each have independent instances and
keys.</span
>
</div>
</div>
</div>
<div class="Accordion_container">
<div class="Accordion_line"></div>
<div class="Accordion_header">
<h2 class="Accordion_title">
What is sharding and how does it protect my data?
</h2>
<img
data-imageName="plus.svg"
decoding="async"
data-nimg="intrinsic"
/>
</div>
<div class="Accordion_children">
<div>
<span class="FAQ_faq"
>In our protocol we split the data into fragments and store it
on multiple Blobbers, so one server does not compromise
availability and security of your data.</span
>
</div>
</div>
</div>
</div>
</div>
<!--FAQ end-->
<!-- Email Modal -->
<section class="modale email-modale" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-header">
<em style="font-size: 30px" class="fa fa-envelope"></em>
<div class="closemodale" onclick="closeDialog()">×</div>
</div>
<div class="modal-body">
<p>
Thank you for signing up for our email list! Please check your email
for verification.
</p>
</div>
</div>
</section>
<!-- Email Modal -->
<footer class="Footer">
<div class="FooterFeature rootContainer">
<div class="bgPattern"></div>
<div class="css">
<div class="zusLogoWhite">
<span>
<img
alt="züs"
data-imageName="zusLogoWhite.svg"
decoding="async"
data-nimg="fill"
sizes="100vw"
/>
</span>
</div>
</div>
<div class="css">
<h3 class="heading withoutPeriod h3">
Enjoy encrypted data sharing<!-- --><span>.</span>
</h3>