-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
659 lines (541 loc) · 23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
<title>On-chain Reputation Powered by Payments
- Kyōdō Protocol</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./stylesheet/normalize.css" rel="stylesheet">
<link href="./stylesheet/flexslider.css" rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link href="./public/stylesheet/main.css" rel="stylesheet">
<!-- Favicons -->
<link rel="icon" type="image/png" href="./images/favicon.png">
<!-- SEO -->
<meta name="description" content="On-chain Reputation Powered by Payments">
<meta name="author" content="WEB3DEV">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="On-chain Reputation Powered by Payments - Kyōdō Protocol">
<meta property="og:description" content="On-chain Reputation Powered by Payments">
<meta property="og:url" content="https://www.kyodoprotocol.xyz/">
<meta property="og:site_name" content="Kyōdō Protocol">
<meta property="og:image" content="./images/open-graph.jpg">
<meta property="og:locale" content="en">
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "DAO",
"name" : "Kyōdō Protocol",
"url" : "https://www.kyodoprotocol.xyz/"
}
</script>
<!-- Firebase App (the core Firebase SDK) -->
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-app.js"></script>
<!-- Add Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/8.6.1/firebase-database.js"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XWH1M1SMFD"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() { dataLayer.push(arguments) }
gtag('js', new Date())
gtag('config', 'G-XWH1M1SMFD');
</script>
<body>
<ul class="config-nav">
<li class="darkmode-trigger">
<a href="#">
<img src="./images/darkmode-icon.svg" alt="Dark mode">
</a>
</li>
</ul>
<header id="js-header" class="home-header">
<div class="holder">
<h1 class="logo text-focus-in">
<a href="/">
<img src="./images/logo.svg" alt="Kyōdō Protocol">
</a>
</h1>
<div class="cta text-focus-in">
<label for="modal" class="example-label">
Get started
</label>
</div>
</div>
</header>
<section class="main-banner">
<div class="holder">
<div class="logo-banner text-focus-in">
<img src="./images/logo.svg" alt="Kyōdō Protocol" class="logo-black">
<img src="./images/logo-white.svg" alt="Kyōdō Protocol" class="logo-white">
</div>
<h1 data-aos="fade-in">
<span>
Every Invoice Tells a Story. Let Them Build Your Reputation
</span>
</h1>
<p data-aos="fade-up">
Kyōdō lets your clients tell your professional story while building your verified reputation effortlessly.
Every paid invoice showcases your skills, earns you respect, and opens doors to the right opportunities.
</p>
<div class="cta" data-aos="fade-right">
<label for="modal" class="example-label">
Get started
</label>
</div>
<a class="docs-btn" data-aos="fade-left" href="https://docs.kyodoprotocol.xyz/" target="_blank">
<img src="./images/docs-icon.svg"> Doc<em>s</em><span>umentation</span>
</a>
</div>
</section> <!-- /main-banner -->
<div class="home-gradient">
<section class="big-description-fold">
<div class="holder">
<p data-aos="zoom-out">
Client-verified. Effortless reputation. One invoice at a time.
</p>
</div>
</section>
<section class="how-it-works-fold">
<div class="holder">
<div class="flexslider">
<h2 class="default-heading" data-aos="zoom-out">
<span>How it works</span>
</h2>
<ul class="slides">
<li>
<div class="columns">
<div>
<h3>Import your data</h3>
<h4 class="heading-call">
Connect Your Work
</h4>
</div>
<div>
<div class="how-icon">
<img src="./images/how-it-works/01.svg" alt="Community establishment">
</div>
<div class="how-text">
<p>Import your previous invoices (Stripe, Quickbooks, etc) and online profiles (GitHub, Upwork, Linkedin, etc.) to seamlessly connect your professional activity to Kyōdō.</p>
</div>
</div>
</div> <!-- /columns-->
</li>
<li>
<div class="columns">
<div>
<h3>Issue free payable invoices</h3>
<h4 class="heading-call">
Get Paid with Trust
</h4>
</div>
<div>
<div class="how-icon">
<img src="./images/how-it-works/02.svg" alt="Member participation">
</div>
<div class="how-text">
<p>Issue secure invoices for free within Kyōdō and accept payments in major satable coins. Every verified transaction strengthens your reputation and skills.
</p>
</div>
</div>
</div> <!-- /columns-->
</li>
<li>
<div class="columns">
<div>
<h3>Client reviews</h3>
<h4 class="heading-call">
Earn Client Kudos
</h4>
</div>
<div>
<div class="how-icon">
<img src="./images/how-it-works/03.svg" alt="Payment processing">
</div>
<div class="how-text">
<p>Everytime your client pays your invoice, Kyōdō encourages them to leave NPS and feedback, adding valuable social proof to your Kyōdō profile.
.</p>
</div>
</div>
</div> <!-- /columns-->
</li>
<li>
<div class="columns">
<div>
<h3>Effortless reputation building</h3>
<h4 class="heading-call">
Showcase Your Skills
</h4>
</div>
<div>
<div class="how-icon">
<img src="./images/how-it-works/04.svg" alt="Validating experience">
</div>
<div class="how-text">
<p>Build a curated and effortless reputation highlighting your most impactful skills, customers and client endorsements. Let your work speak for itself.</p>
</div>
</div>
</div> <!-- /columns-->
</li>
<li>
<div class="columns">
<div>
<h3>Community benefits</h3>
<h4 class="heading-call">
Network with Ease
</h4>
</div>
<div>
<div class="how-icon">
<img src="./images/how-it-works/05.svg" alt="Community benefits">
</div>
<div class="how-text">
<p>Connect and referral like-minded professionals and be found by potential clients within the Kyōdō community. Expand your reach and unlock new opportunities.</p>
</div>
</div>
</div> <!-- /columns-->
</li>
<li>
<div class="columns">
<div>
<h3>Unlock new opportunities</h3>
<h4 class="heading-call">
Reap the Rewards
</h4>
</div>
<div>
<div class="how-icon">
<img src="./images/how-it-works/06.svg" alt="DAO Participation">
</div>
<div class="how-text">
<p>Land dream jobs, command fair compensation, and attract better opportunities – all powered by your Kyōdō-verified reputation.</p>
</div>
</div>
</div> <!-- /columns-->
</li>
</ul>
</div> <!-- /flexslider -->
</div>
</section> <!-- /how-it-works-fold -->
</div> <!-- /home-gradient -->
<section class="roles-and-benefits-fold">
<div class="holder">
<h2 class="default-heading" data-aos="zoom-out">
Benefits
</h2>
<div class="columns">
<div class="image-col" data-aos="fade-right">
<img src="./images/persons/light/community-art.svg" alt="Community" class="community-light">
<img src="./images/persons/dark/community-art.svg" alt="Community" class="community-dark">
</div>
<div>
<h3 class="community-h" data-aos="fade-in">
Invoice
</h3>
<h4 data-aos="fade-in" >
Write Your Success Story, One Invoice at a Time
</h4>
<p data-aos="fade-up">
Kyōdō transforms your invoices into powerful narratives of your skills and impact.Every paid project becomes a verified chapter in your professional saga, attracting ideal clients, unlocking fair compensation, and building a reputation that speaks volumes.
</p>
<p data-aos="fade-up"><strong>Here's how your invoices become your storytellers:</strong>
</p>
<ul>
<li><p data-aos="fade-up"><strong>Effortless Invoice Management:</strong> Generate free and secure invoices, simplifying cross-border payments and financial control.</p></li>
<li><p data-aos="fade-up"><strong>Be paid in stablecoins in all major chains:</strong> We support payments in USDC, USDT, BUSD and DAI.</p></li>
<li><p data-aos="fade-up"><strong>Transparent Reputation Metrics:</strong> Each paid invoice builds your verifiable track record, showcasing your expertise and valuable skills.</p></li>
<li><p data-aos="fade-up"><strong>Integrate with Existing Tools:</strong> Seamlessly import data from Stripe, Quickbooks, and other platforms to accelerate reputation building.</p></li>
</ul>
<p data-aos="fade-up">Forget online personas and self-promotion. Let your work tell your story, and watch your Kyōdō profile become a magnet for success.
</p>
</div>
</div> <!-- /columns-->
<div class="columns invert-cols">
<div class="image-col" data-aos="fade-left">
<img src="./images/persons/light/professional-art.svg" alt="Professional" class="professional-light">
<img src="./images/persons/dark/professional-art.svg" alt="Professional" class="professional-dark">
</div>
<div>
<h3 class="professional-h" data-aos="fade-in">
Reputation
</h3>
<h4 data-aos="fade-in">
Earn Trust, Unlock Opportunity
</h4>
<p data-aos="fade-up">Beyond the superficial game of online popularity, Kyōdō values your real work. Build a genuine reputation powered by earned trust, not inflated follower counts.
</p>
<p data-aos="fade-up">Here's how Kyōdō elevates your reputation:
</p>
<ul>
<li><p data-aos="fade-up"><strong>Client-Verified Trust:</strong> Every satisfied client becomes a co-author in your story, adding valuable testimonials and endorsements.</p></li>
<li><p data-aos="fade-up"><strong>Automated Net Promoter Score:</strong> Get real-time feedback from clients when they pay you, adding credibility and depth to your reputation.and client satisfaction.</p></li>
<li><p data-aos="fade-up"><strong>Dedicated Reputation Page:</strong> Showcase your expertise, skills, and client feedback in one centralized, professional space.</p></li>
</ul>
<p data-aos="fade-up">Leave the inflated online personas behind. Kyōdō builds a reputation that speaks for itself, opening doors to the opportunities you deserve.</p>
</div>
</div> <!-- /columns-->
<div class="columns">
<div class="image-col" data-aos="fade-right">
<img src="./images/persons/light/contractor-art.svg" alt="Contractor" class="contractor-light">
<img src="./images/persons/dark/contractor-art.svg" alt="Contractor" class="contractor-dark">
</div>
<div>
<h3 class="contractor-h" data-aos="fade-in">
Wallet
</h3>
<h4 data-aos="fade-in">
Your Financial Hub, Powered by Trust
</h4>
<p data-aos="fade-up">
The Kyōdō Wallet is more than just a multichain wallet; it's your financial command center.
</p>
<ul>
<li><p data-aos="fade-up"><strong>Seamless DeFi Integration:</strong> Invest, borrow, lend, and earn like a pro with instant access to top DeFi protocols.</p></li>
<li><p data-aos="fade-up"><strong>Frictionless Salary Flexibility:</strong> Control your finances with automated rules, and enjoy instant off-ramping for real-world use.</p></li>
<li><p data-aos="fade-up"><strong>Exclusive Financial Products:</strong> Access credit and debit cards powered by your Kyōdō reputation, granting you the freedom to build your dream studio or simply live on your terms.</p></li>
</ul>
<p data-aos="fade-up">
Kyōdō simplifies the complexities of web3 finances. Stop juggling multiple platforms and missing out on DeFi opportunities, we connect you with best-in-class platforms all under one roof.
</p>
</div>
</div> <!-- /columns-->
</div>
</section> <!-- /roles-and-benefits-fold-->
<div class="parallax"></div>
<section class="middle-call-fold">
<div class="holder">
<div class="columns">
<div data-aos="fade-left">
<p>
Every Invoice Tells a Story. Let Clients Build Your Verified Reputation with Kyōdō.
</p>
</div>
<div>
<h2 data-aos="fade-down" class="heading-call">
Join our waitlist today
</h2>
<div class="cta" data-aos="fade-right">
<label for="modal" class="example-label">
Join
</label>
</div>
</div>
</div> <!-- /columns-->
</div>
</section> <!-- /middle-call-fold-->
<!-- <section class="two-boxes-fold">
<div class="holder">
<div class="columns">
<div class="dao-fold">
<h3 data-aos="zoom-out">
Kyōdō DAO
</h3>
<p data-aos="fade-up">
Kyōdō DAO's governance is based on a democratic model, with each member being able to propose possible partnerships, potential investments, and improvements in product development.
</p>
<p data-aos="fade-in">
<a href="https://docs.kyodoprotocol.xyz/dao/introduction" target="_blank" class="read-more">
Read more
</a>
</p>
</div>
<div class="token-fold">
<div class="example">Example data</div>
<h3 data-aos="zoom-out">
KYD Token
</h3>
<div class="token-price" data-aos="fade-left">
$0.77697
</div>
<div class="price-bar" data-aos="fade-up">
<div class="bar"></div>
<ul>
<li>$0.760006</li>
<li>24H</li>
<li>$0.787484</li>
</ul>
</div>
<ul class="token-infos" data-aos="fade-in">
<li>
<span class="left-col">Market Cap</span>
<span class="right-col">$57,867,364</span>
</li>
<li>
<span class="left-col">24 Hour Trading Vol</span>
<span class="right-col">$1,360,718</span>
</li>
<li>
<span class="left-col">Circulating Supply</span>
<span class="right-col">$65.998.218</span>
</li>
<li>
<span class="left-col">Maximum Supply</span>
<span class="right-col">$100,000,000</span>
</li>
</ul>
</div>
</div>
</div>
</section> -->
<!--
<section class="last-call-fold">
<div class="holder">
<h2 data-aos="zoom-in" class="heading-call">
Kyōdō Protocol is used by over 1,500 professionals and community members
</h2>
<div class="cta" data-aos="fade-right">
<label for="modal" class="example-label">
Get started
</label>
</div>
</div>
</section>
<section class="numbers-fold">
<div class="holder">
<div class="columns-3">
<div class="item zoom-in" data-aos-duration="1500">
<img src="./images/icon-01.svg" data-aos="flip-left" data-aos-duration="2500">
<h3>2,700</h3>
<p><strong>Smart Contracts</strong> deployed</p>
</div>
<div class="item" data-aos="zoom-in" data-aos-duration="1350">
<img src="./images/icon-02.svg" data-aos="flip-left" data-aos-duration="2500">
<h3>12,380</h3>
<p><strong>NFTs (Badges)</strong> minted</p>
</div>
<div class="item" data-aos="zoom-in" data-aos-duration="1000">
<img src="./images/icon-03.svg" data-aos="flip-left" data-aos-duration="2500">
<h3>127%</h3 data-aos="zoom-in">
<p><strong>Deployment</strong> growth</p>
</div>
</div>
</div>
</section>
-->
<!-- /numbers-fold-->
<footer>
<section class="footer-top">
<div class="holder">
<div class="columns-3">
<div>
<div class="logo-footer" data-aos="zoom-right">
<img src="./images/logo.svg" alt="Kyōdō Protocol" class="logo-black">
<img src="./images/logo-white.svg" alt="Kyōdō Protocol" class="logo-white">
</div>
<ul class="social-list">
<li>
<a href="/">
<img src="./images/discord-icon.svg" alt="Discord">
</a>
</li>
<li>
<a href="https://twitter.com/KyodoProtocol" target="_blank">
<img src="./images/twitter-icon.svg" alt="Twitter">
</a>
</li>
<li>
<a href="https://github.com/w3b3d3v/kyodo-protocol-docs" target="_blank">
<img src="./images/github-icon.svg" alt="Github">
</a>
</li>
</ul>
</div>
<div class="footer-nav">
<div class="columns">
<div>
<h5>Resources</h5>
<ul>
<li>
<a href="https://docs.kyodoprotocol.xyz/">
Documentation
</a>
</li>
<li>
<a href="https://github.com/w3b3d3v/kyodo-protocol-docs" target="_blank">
Github
</a>
</li>
</ul>
</div>
<div>
<h5>Institutional</h5>
<ul>
<li>
<a href="about.html">
About
</a>
</li>
<li>
<a href="https://docs.kyodoprotocol.xyz/faq" target="_blank">
FAQ
</a>
</li>
</ul>
</div>
</div> <!-- /columns -->
</div> <!-- /footer-nav -->
<div class="web3dev">
<img src="./images/web3dev.svg" alt="WEB3DEV">
<p>
Made with <span>♡</span> by<br>
<a href="https://www.web3dev.com.br/" target="_blank">WEB3DEV</a>
</p>
</div>
</div> <!-- /columns-3 -->
</div>
</section>
<section class="footer-bottom">
<div class="holder">
<p><strong>© 2024 WEB3DEV</p>
<ul>
<li><a href="code-of-conduct.html">Code of conduct</a></li>
<li><a href="privacy-policy.html">Privacy policy</a></li>
<li><a href="terms-of-use.html">Terms of use</a></li>
</ul>
</div>
</section>
</footer>
<input type="checkbox" id="modal">
<label for="modal" class="modal-background tracking-in-expand"></label>
<div class="modal text-focus-in">
<label for="modal" class="close">
<img src="./images/close.svg" alt="Close">
</label>
<div class="form">
<h2 class="heading-call">
Join waitlist
</h2>
<p>
Enter your e-mail address in the field below
</p>
<form id="waitlistForm">
<label for="userEmail" class="form-label">Your e-mail</label>
<input type="email" id="userEmail" name="userEmail">
<label for="interestReason" class="form-label">Why are you interested?</label>
<select id="interestReason" name="interestReason">
<option value=""></option>
<option value="community_leader">Community Leader: I want to share the Protocol to my community</option>
<option value="professional">Professional: I want to use the Protocol to provide services</option>
<option value="business">Business: I want to hire talents from communities</option>
</select>
<button type="submit" id="submitBtn">Join now</button>
</form>
<script src="./js/form.js"></script>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="./js/jquery.flexslider.js"></script>
<script src="./js/main.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init({
duration: 2000, // values from 0 to 3000, with step 50ms
});
</script>
</body>
</html>