-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1102 lines (1044 loc) · 48.8 KB
/
index.html
File metadata and controls
1102 lines (1044 loc) · 48.8 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="zxx" class="js">
<head>
<meta charset="utf-8">
<meta name="author" content="Krow Network LLC">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="The Krow Network is a secure job platform, fueled by blockchain technology and cryptocurrency.">
<!-- Fav Icon -->
<link rel="shortcut icon" href="images/krow-logo.png">
<!-- Site Title -->
<title>Krow Network | A New Way to Work - Blockchain Application</title>
<!-- Vendor Bundle CSS -->
<link rel="stylesheet" href="assets/css/vendor.bundle.css">
<!-- Custom styles for this template -->
<link rel="stylesheet" href="assets/css/style.css?ver=1.1">
<link rel="stylesheet" href="assets/css/theme.css?ver=1.1">
</head>
<body class="theme-dark is-smooth-effect" data-spy="scroll" data-target="#mainnav" data-offset="80">
<!-- Header -->
<header class="site-header is-sticky">
<!-- Place Particle Js -->
<div id="particles-js" class="particles-container particles-js"></div>
<!-- Navbar -->
<div class="navbar navbar-expand-lg is-transparent" id="mainnav">
<nav class="container">
<a class="navbar-brand animated" data-animate="fadeInDown" data-delay=".65" href="./">
<img class="logo logo-dark" alt="logo" src="images/krow-logo.png" srcset="images/krow-logo.png">
<img class="logo logo-light" alt="logo" src="images/krow-logo.png" srcset="images/krow-logo.png">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggle">
<span class="navbar-toggler-icon">
<span class="ti ti-align-justify"></span>
</span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarToggle">
<ul class="navbar-nav animated" data-animate="fadeInDown" data-delay=".9">
<li class="nav-item"><a class="nav-link menu-link" href="#intro">Overview<span class="sr-only">(current)</span></a></li>
<li class="nav-item"><a class="nav-link menu-link" href="#apps">Platform</a></li>
<li class="nav-item"><a class="nav-link menu-link" href="#roadmap">Roadmap</a></li>
<li class="nav-item"><a class="nav-link menu-link" href="#team">Team</a></li>
<li class="nav-item"><a class="nav-link menu-link" href="#faq">FAQs</a></li>
<li class="nav-item"><a class="nav-link menu-link" href="#contact">Contact</a></li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown">MORE</a>
<div class="dropdown-menu">
<a class="dropdown-item menu-link" href="#media-partner">Media Partners</a>
<a class="dropdown-item menu-link" href="#faq">Faqs</a>
</div>
</li> -->
</ul>
<ul class="navbar-nav navbar-btns animated" data-animate="fadeInDown" data-delay="1.15">
<li class="nav-item"><a class="nav-link btn btn-sm btn-outline menu-link" href="https://drive.google.com/file/d/1ijmmtV9z5NNPrdEvUBd_cpSvmwb6URV0/view?usp=sharing" target="_blank">Whitepaper</a></li>
<li class="nav-item"><a class="nav-link btn btn-sm btn-outline menu-link" href="https://docs.google.com/forms/d/e/1FAIpQLSfWuDRHqmcofahZSDY-kglZ97ait_Ohi00iXGdxzXVsQjQXsQ/viewform?usp=sf_link" target="_blank">Whitelist</a></li>
</ul>
</div>
</nav>
</div>
<!-- End Navbar -->
<!-- Banner/Slider -->
<div id="header" class="banner banner-curb banner-particle d-flex align-items-center">
<div class="container">
<div class="animated" data-animate="fadeInUp" data-delay="1.55" >
<div class="alert alert-info" role="alert">
<marquee behavior="scroll" direction="left" scrollamount="10" onmouseover="this.stop();" onmouseout="this.start();"><strong>Apply for the Team Whitepaper A New Way to Work</strong></marquee>
</div>
</div>
<div class="banner-content">
<div class="row align-items-center mobile-center">
<div class="col-lg-6 col-md-12 order-lg-first">
<div class="header-txt">
<h1 class="animated" data-animate="fadeInUp" data-delay="1.55">Powering Resumes for the New Way to Work</h1>
<p class="lead color-secondary animated" data-animate="fadeInUp" data-delay="1.65">Decentralized Global Platform Start-Up for Labor Management</p>
<ul class="btns animated" data-animate="fadeInUp" data-delay="1.75">
<li><a href="https://drive.google.com/file/d/1ijmmtV9z5NNPrdEvUBd_cpSvmwb6URV0/view?usp=sharing" target="_blank" class="btn">WHITEPAPER</a></li>
<li><a class="btn btn-alt menu-link" href="#contact">REQUEST A DEMO</a></li>
</ul>
<ul class="social">
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://www.t.me/thekrownetwork" target="_blank"><em class="fa fa-paper-plane"></em></a></li>
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://www.reddit.com/r/krow" target="_blank"><em class="fa fa-reddit"></em></a></li>
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://www.facebook.com/KrowNetwork/" target="_blank"><em class="fa fa-facebook"></em></a></li>
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://twitter.com/krownetwork" target="_blank"><em class="fa fa-twitter"></em></a></li>
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://www.youtube.com/channel/UCmTgljCaCHkCPIbsE3IB4cA" target="_blank"><em class="fa fa-youtube-play"></em></a></li>
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://github.com/KrowNetwork/krowsite" target="_blank"><em class="fa fa-github"></em></a></li>
<li class="animated" data-animate="fadeInUp" data-delay="2"><a href="https://medium.com/@krownetwork" target="_blank"><em class="fa fa-medium"></em></a></li>
</ul>
</div>
</div><!-- .col -->
<div class="col-lg-5 offset-lg-1">
<div class="animated" data-animate="fadeInUp" data-delay="1.55" class="embed-responsive embed-responsive-16by9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/RVnB958jI7w?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
</div>
</div><!-- .row -->
</div><!-- .banner-content -->
</div><!-- .container -->
</div>
<!-- End Banner/Slider -->
</header>
<!-- End Header -->
<!--
<!- - Start Section - ->
<div class="section section-pad section-bg-alt" id="partners">
<div class="partner-list">
<div class="row text-center">
<div class="col-sm">
<div class="single-partner animated" data-animate="fadeInUp" data-delay="0">
<img src="images/wsjlogo.png" alt="partner">
</div>
</div>
<div class="col-sm">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".1">
<img src="images/hypecodes.png" alt="partner">
</div>
</div>
<div class="col-sm">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".2">
<img src="images/coinschedule.png" alt="partner">
</div>
</div>
</div>
</div>
</div>
</div>
<!- - Start Section - ->
-->
<!-- Start Section -->
<div class="section section-pad section-bg-blend nopb" id="intro">
<div class="container">
<div class="row align-items-center">
<div class="col-md-5 offset-md-1">
<div class="res-m-btm animated" data-animate="fadeInUp" data-delay=".1">
<img src="images/info-1.png" alt="graph">
</div>
</div><!-- .col -->
<div class="col-md-6 order-md-first order-last">
<div class="text-block">
<h2 class="animated" data-animate="fadeInUp" data-delay="0">We're building a platform to <br> revolutionize the labor industry</h2>
<p class="lead animated" data-animate="fadeInUp" data-delay=".1">As technology continues to take over, the current infrastructure behind the labor market simply lacks a true utilization of technologies available. Powered by a ledger, the Krow Network intends to move jobs online.</p>
<a href="https://youtu.be/RVnB958jI7w" class="play-btn video-play animated" data-animate="fadeInUp" data-delay=".2">
<!--<em class="play"><span></span></em>
<span>Watch Video</span>
<span>What is the Krow Network?</span> -->
</a>
</div>
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .conatiner -->
</div>
<!-- Start Section -->
<!-- Start Section -->
<div class="section section-pad no-pb section-bg-alt">
<div class="container">
<div class="row align-items-center">
<div class="col-md-5">
<div class="res-m-btm animated" data-animate="fadeInUp" data-delay=".1">
<img src="images/690.png" alt="graph">
</div>
</div><!-- .col -->
<div class="col-md-6 offset-md-1">
<div class="text-block">
<h4 class="animated" data-animate="fadeInUp" data-delay="0">What is the Krow Network?</h4>
<p class="lead animated" data-animate="fadeInUp" data-delay=".1">The Krow Network is a network that connects employers and employees from around the world on one secure platform, driven by blockchain technology. </p>
<p class="animated" data-animate="fadeInUp" data-delay=".2">Employers will be able to send their paychecks automatically via the Krow Network, and each party is able to evaluate their business counter-part upon paycheck execution. Whether it be a student entering the job field or a veteran, each has the same goal to strengthen their resume. </p>
<p class="animated" data-animate="fadeInUp" data-delay=".3">The process is simple. A company puts out a job request in real life or on the platform, and hires their employee. The employee then carries out the specified work and recieves his paycheck as normal, but this paycheck is much more than just money. The paycheck is essentially an evaluation that is put onto the individual's resume for future companies to see, along with a rating being put onto the company's smart resume as well. </p>
</div>
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div>
<!-- Start Section -->
<!-- Start Section -->
<div class="section section-pad section-bg-btoa" id="apps">
<div class="container">
<div class="row text-center">
<div class="col-md-8 offset-md-2 col-lg-6 offset-lg-3">
<div class="section-head">
<div class="heading-animation">
<span class="line-1"></span><span class="line-2"></span>
<span class="line-3"></span><span class="line-4"></span>
<span class="line-5"></span><span class="line-6"></span>
<span class="line-7"></span><span class="line-8"></span>
</div>
<h2 class="section-title animated" data-animate="fadeInUp" data-delay="0">The Krow Platform
<span>Krow</span>
</h2>
<p class="animated" data-animate="fadeInUp" data-delay=".1">Meet the new way to work. Via the Krow Network, users of the job connection platform will be able to rate and interact with business counter-parts while having the interaction stored onto a ledger. Never write a paycheck again, and be able to pay your employees in cash!</p>
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-md-6">
<div class="res-m-btm animated" data-animate="fadeInUp" data-delay=".1">
<img src="images/Mac-and-iphone.png" alt="graph">
</div>
</div><!-- .col -->
<div class="col-md-5 offset-md-1">
<div class="text-block">
<p class="animated" data-animate="fadeInUp" data-delay="0">The Krow Network is driven through its decentralized application, which connects employers and employees based on their experience. Our goal is to allow complete transparency to occur between the two parties before even speaking with each other. </p>
<ul class="animated" data-animate="fadeInUp" data-delay=".1">
<li>Smart Resumes</li>
<li>Integrated Network Matching</li>
<li>Blockchain Application</li>
<li>Automated Paychecks</li>
</ul>
<ul class="btns">
<li class="animated" data-animate="fadeInUp" data-delay="0"><a href="https://drive.google.com/file/d/1ijmmtV9z5NNPrdEvUBd_cpSvmwb6URV0/view?usp=sharing" class="btn btn-sm">WHITEPAPER</a></li>
</ul>
</div>
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div>
<!-- Start Section -->
<!-- Start Section
<div class="section section-pad section-bg-alt" id="tokenSale">
<div class="container">
<div class="row text-center">
<div class="col-md-8 offset-md-2 col-lg-6 offset-lg-3">
<div class="section-head">
<h2 class="section-title animated" data-animate="fadeInUp" data-delay="0">Initial Coin Offering
<span>ICO</span>
</h2>
<p class="animated" data-animate="fadeInUp" data-delay=".1">The Krow Network is performing a public offering of our KRW token which is tied to the evaluation of our project. The Krow token is essentially a share in the Krow Network project, and will have direct compatibility with the application. The Krow Network token is registered as a security in the United States as required by the U.S. Securities Act of 1933.</p>
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-lg-6">
<div class="row event-info">
<div class="col-sm-6">
<div class="event-single-info animated" data-animate="fadeInUp" data-delay="0">
<h6>Start</h6>
<p>May 20, 2018 (12:00AM GMT)</p>
</div>
</div> .col
<div class="col-sm-6">
<div class="event-single-info animated" data-animate="fadeInUp" data-delay=".1">
<h6>Number of Tokens for Sale</h6>
<p>1,200,000,000 KRW</p>
</div>
</div>
<div class="col-sm-6">
<div class="event-single-info animated" data-animate="fadeInUp" data-delay=".2">
<h6>Soft Cap/Hard Cap</h6>
<p> 3,000 ETH ($1,800,000 USD) | 10,000 ETH ($6,000,000 USD)</p>
</div>
</div>
<div class="col-sm-6">
<div class="event-single-info animated" data-animate="fadeInUp" data-delay=".3">
<h6>Tokens Exchange Rate</h6>
<p>1 ETH = 600,000 KRW + 33% Bonus</p>
</div>
</div>
<div class="col-sm-6">
<div class="event-single-info animated" data-animate="fadeInUp" data-delay=".4">
<h6>Acceptable Currencies</h6>
<p>ETH, BTC, LTC, XRP, USD</p>
</div>
</div>
<div class="col-sm-6">
<div class="event-single-info animated" data-animate="fadeInUp" data-delay=".5">
<h6>Minimal Transaction Amount</h6>
<p>0.5 ETH Equivalence</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5 offset-lg-1">
<div class="countdown-box text-center animated" data-animate="fadeInUp" data-delay=".3">
<div class="token-countdown d-flex align-content-stretch" data-date="2018/05/20"></div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfWuDRHqmcofahZSDY-kglZ97ait_Ohi00iXGdxzXVsQjQXsQ/viewform?usp=sf_link" target="_blank" class="btn btn-alt btn-sm">Registration</a>
<ul class="icon-list">
<li><em class="fa fa-bitcoin"></em></li>
<li><em class="fa fa-won"></em></li>
<li><em class="fa fa-cc-visa"></em></li>
<li><em class="fa fa-cc-mastercard"></em></li>
</ul>
</div>
</div> .col
</div>
<div class="gaps size-3x"></div><div class="gaps size-3x d-none d-md-block" id="distribution"></div>
<div class="row text-center">
<div class="col-md-6">
<div class="single-chart res-m-btm">
<h3 class="sub-heading">Distribution <br class="hidden-xs"> of Tokens</h3>
<div class="animated" data-animate="fadeInUp" data-delay="0">
<img src="images/Vector-Smart-Object2.png" alt="chart">
</div>
</div>
</div>
<div class="col-md-6">
<div class="single-chart">
<h3 class="sub-heading">Use of<br class="hidden-xs">ICO Proceeds</h3>
<div class="animated" data-animate="fadeInUp" data-delay=".1">
<img src="images/Vector-Smart-Object13.png" alt="chart">
</div>
</div>
</div>
</div>
</div>
</div>-->
<!-- Start Section -->
<!-- Start Section -->
<div class="section section-pad section-bg section-connect" id="roadmap">
<div class="container">
<div class="row text-center">
<div class="col">
<div class="section-head">
<h2 class="section-title animated" data-animate="fadeInUp" data-delay="0.25">Our Roadmap
<span>RoadMap</span>
</h2>
</div>
</div>
</div>
<div class="row roadmap-list align-items-end animated" data-animate="fadeInUp" data-delay="0.5">
<div class="col-lg">
<div class="single-roadmap roadmap-sm roadmap-done">
<h6>August 2017</h6>
<p>Conceptual Creation and Initial Whitepaper Release</p>
</div>
</div><!-- .col -->
<div class="col-lg width-0">
<div class="single-roadmap roadmap-down roadmap-done">
<h6>October 2017</h6>
<p>Initial Hirings and ERC20 Token Development</p>
</div>
</div><!-- .col -->
<div class="col-lg">
<div class="single-roadmap roadmap-lg roadmap-done">
<h6>December 2017</h6>
<p>Development Team Creation and DAPP Model</p>
</div>
</div><!-- .col -->
<div class="col-lg width-0">
<div class="single-roadmap roadmap-down roadmap-done">
<h6>February 2018</h6>
<p>Private Sale to Team (~21 Million KRW) and Initial Network Creation</p>
</div>
</div><!-- .col -->
<div class="col-lg">
<div class="single-roadmap roadmap-sm roadmap-done">
<h6>April 2018</h6>
<p>Private Alpha Krow Network Platform Release & Team Extension</p>
</div>
</div><!-- .col -->
<div class="col-lg width-0">
<div class="single-roadmap roadmap-down">
<h6>May 2018</h6>
<p>Public V1.0 Alpha of Platform Released For Test Network and ICO is Open</p>
</div>
</div><!-- .col -->
<div class="col-lg">
<div class="single-roadmap roadmap-lg">
<h6>September 2018</h6>
<p>Industry Introduction for Commercial Use and Further Network Development</p>
</div>
</div><!-- .col -->
<div class="col-lg width-0">
<div class="single-roadmap roadmap-down">
<h6>December 2018</h6>
<p>Industry Introduction for Commercial Use and Internship Integration</p>
</div>
</div><!-- .col -->
<div class="col-lg">
<div class="single-roadmap roadmap-sm">
<h6>March 2019</h6>
<p>Alpha V2.0 Released for Commercial Use and Tax/Audit Integration</p>
</div>
</div><!-- .col -->
<div class="col-lg width-0">
<div class="single-roadmap roadmap-down">
<h6>October 2019</h6>
<p>International Integration of Application and Press Tour</p>
</div>
</div><!-- .col -->
<div class="col-lg">
<div class="single-roadmap roadmap-lg">
<h6>December 2019</h6>
<p>Full Integration within 10+ Countries and Fully Functional Day to Day Application</p>
</div>
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div>
<!-- Start Section -->
<!-- Start Section -->
<div class="section section-pad no-pb section-bg-alt section-fix" id="team">
<div class="container">
<div class="row text-center">
<div class="col-md-8 offset-md-2 col-lg-6 offset-lg-3">
<div class="section-head">
<h2 class="section-title" data-animate="fadeInDown" data-delay="0">Powered by Our Team
<span>Team</span>
</h2>
<p>The Krow Network Team combines development experience, industry expertise, and a passion for revolutionizing labor interactions.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/milad.jpg" alt="team">
<a href="#team-profile-2"></a>
</div>
<div class="team-info">
<h5 class="team-name">Milad <br>Mirg</h5>
<span class="team-title">CEO & Co-Founder</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/vivek.jpg" alt="team">
<a href="#team-profile-2"></a>
</div>
<div class="team-info">
<h5 class="team-name">Vivek <br>Sreenivasan</h5>
<span class="team-title">CTO & Co-Founder</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/tucker.jpg" alt="team">
<a href="#team-profile-3"></a>
</div>
<div class="team-info">
<h5 class="team-name">Tucker <br>Siegel</h5>
<span class="team-title">Blockchain Developer</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/daniel.jpg" alt="team">
<a href="#team-profile-4"></a>
</div>
<div class="team-info">
<h5 class="team-name">Daniel <br>Vergilis</h5>
<span class="team-title">Developer & Systems Architect</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
</div><!-- .row -->
<div class="row">
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/nik.jpg" alt="team">
<a href="#team-profile-1"></a>
</div>
<div class="team-info">
<h5 class="team-name">Nik <br>Tachev</h5>
<span class="team-title">Front-end/Mobile Developer</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/team-a-sq.jpg" alt="team">
<a href="#team-profile-2"></a>
</div>
<div class="team-info">
<h5 class="team-name">David <br>Liu</h5>
<span class="team-title">Strategic Analyst</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/krishna.jpg" alt="team">
<a href="#team-profile-3"></a>
</div>
<div class="team-info">
<h5 class="team-name">Krishna <br>Eleti</h5>
<span class="team-title">Head of Marketting</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
<div class="col-md-6 col-lg-3 d-inline-flex justify-content-center">
<div class="team-member">
<div class="team-photo">
<img src="images/farhan.jpg" alt="team">
<a href="#team-profile-4"></a>
</div>
<div class="team-info">
<h5 class="team-name">Farhan <br>Sarfraz</h5>
<span class="team-title">Community Manager</span>
<ul class="team-social">
<!--<li><a href=""><em class="fa fa-linkedin"></em></a></li>
<li><a href=""><em class="fa fa-twitter"></em></a></li>-->
</ul>
</div>
</div>
</div><!-- .col -->
</div><!-- .row -->
</div>
</div>
<!-- Start Section -->
<!--
<div class="section section-pad section-bg section-connect" id="media-partner">
<div class="container">
<div class="row text-center">
<div class="col-md-6 offset-md-3">
<div class="section-head">
<h6 class="section-title-sm animated" data-animate="fadeInUp" data-delay="0">As seen in</h6>
</div>
</div>
</div>
<div class="partner-list">
<div class="row text-center">
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".1">
<img src="images/partner-xs-a.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".2">
<img src="images/partner-xs-b.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".3">
<img src="images/partner-xs-c.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".4">
<img src="images/partner-xs-d.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".5">
<img src="images/partner-xs-e.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".6">
<img src="images/partner-xs-f.png" alt="partner">
</div>
</div>
</div>
<div class="row text-center">
<div class="col-md-10 offset-md-1">
<div class="row">
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".7">
<img src="images/partner-sm-a.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".8">
<img src="images/partner-sm-b.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay=".9">
<img src="images/partner-sm-c.png" alt="partner">
</div>
</div>
<div class="col-sm col-6">
<div class="single-partner animated" data-animate="fadeInUp" data-delay="1">
<img src="images/partner-sm-d.png" alt="partner">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!-- Start Section -->
<div class="section section-pad no-pb section-bg-alt" id="faq">
<div class="container">
<div class="row text-center">
<div class="col-md-8 offset-md-2 col-lg-6 offset-lg-3">
<div class="section-head">
<h2 class="section-title animated" data-animate="fadeInUp" data-delay="0">Frequently Asked Questions
<span>FAQs</span>
</h2>
<p class="animated" data-animate="fadeInUp" data-delay=".1">Below we’ve provided our most frequently asked questions about or project. If you have any other questions, please get in touch using the contact form below.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="tab-custom">
<!-- Nav tabs -->
<ul class="nav nav-tabs text-center animated" data-animate="fadeInUp" data-delay="0">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#tab-1">General</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-4">Platform</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-5">Legal</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content animated" data-animate="fadeInUp" data-delay=".1">
<div class="tab-pane fade show active" id="tab-1">
<div class="accordion" id="accordion-1">
<div class="card">
<div class="card-header">
<h5>
<a data-toggle="collapse" data-target="#collapse-1-1">
What is the Krow Network?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-1-1" class="collapse show" data-parent="#accordion-1">
<div class="card-body">
<p>The Krow Network is a unique network, powered through blockchain technology, that maintains and outputs information onto individual's smart resumes.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-1-2">
What is the utilization of the Krow Network?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-1-2" class="collapse" data-parent="#accordion-1">
<div class="card-body">
<p>The Krow Network is paired with our online platform in order to pair employees and employers together through a secure network. Rather than scrambling for information on your counterparty before accepting or denying them, their entire labor record becomes presented through their smart resume.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-1-3">
What purpose does blockchain serve to this project?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-1-3" class="collapse" data-parent="#accordion-1">
<div class="card-body">
<p>A blockchain, also known as a ledger, is able to autonomously track pieces of information without any intermediary party. This creates a sense of validity, as decentralization will allow for an individual's resume to have complete transparency. When hiring an employee or deciding to work for a company, there will no longer be any missing pieces.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-1-4">
How does the Krow Network affect the labor market?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-1-4" class="collapse" data-parent="#accordion-1">
<div class="card-body">
<p>Today's labor market features about 1.5 billion dollars lost, strictly due to incompatibility between new employers and employees. The Krow Network allows for every party to know exactly what they are getting into, before ever even interacting. Employees and employers will now have a sense of knowledge about their counterparty before deciding whether or not to work with them for months, years, or even decades.</p>
</div>
</div>
</div>
</div>
</div><!-- End tab-pane -->
<div class="tab-pane fade" id="tab-2">
<div class="accordion" id="accordion-2">
<div class="card">
<div class="card-header">
<h5>
<a data-toggle="collapse" data-target="#collapse-2-1">
When is the Krow Network ICO?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-2-1" class="collapse show" data-parent="#accordion-2">
<div class="card-body">
<p>The Krow Network ICO will feature three phases of sale, which begins on May 20, 2018. </p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-2-2">
How can I contribute to the Krow Network ICO?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-2-2" class="collapse" data-parent="#accordion-2">
<div class="card-body">
<p>Before being able to purchase our token in ICO, you must enlist in our whitelist which features a KYC sign up. Once you have registered through our whitelist, you will be enabled to buy into our ICO with your choice of currency.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-2-4">
What cryptocurrencies are accepted in our ICO?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-2-4" class="collapse" data-parent="#accordion-2">
<div class="card-body">
<p>The Krow Network ICO will allow users to purchase our token by their choice of bitcoin, ethereum, litecoin, and ripple. There is a minimum purchase amount that equates to 0.5 ethereum. In future phases, we will explore options for other payment methods.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-2-3">
What limitations are there to our ICO?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-2-3" class="collapse" data-parent="#accordion-2">
<div class="card-body">
<p>Our ICO will feature a soft-cap of 3,000 ETH, where we would consider our sale a success. A hard-cap is set to 10,000 ETH, where the sale will automatically end. Currently, the Krow Network ICO supports sale in limited countries. Please contact us for more information.</p>
</div>
</div>
</div>
</div>
</div><!-- End tab-pane -->
<div class="tab-pane fade" id="tab-3">
<div class="accordion" id="accordion-3">
<div class="card">
<div class="card-header">
<h5>
<a data-toggle="collapse" data-target="#collapse-3-1">
What is the utilization of the KRW token?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-3-1" class="collapse show" data-parent="#accordion-3">
<div class="card-body">
<p>The Krow Network token serves as a utility token. On the Krow Network platform, in order to send a paycheck an amount of KRW tokens must be used to fuel and verify the transaction.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-3-2">
What is the KRW token?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-3-2" class="collapse" data-parent="#accordion-3">
<div class="card-body">
<p>The Krow Network Token is an ERC-20 token compatibile with any ethereum wallet.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-3-3">
What exchanges will the KRW token be on?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-3-3" class="collapse" data-parent="#accordion-3">
<div class="card-body">
<p>In our current stage, the Krow Network token is not listed on any exchanges. If our ICO sale is successful, we plan to enlist the KRW token onto 1-2 exchanges immediately, and enlist on more as time passes. </p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-3-4">
How many KRW tokens exist?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-3-4" class="collapse" data-parent="#accordion-3">
<div class="card-body">
<p>10,000,000,000 KRW tokens will ever exist.</p>
</div>
</div>
</div>
</div>
</div><!-- End tab-pane -->
<div class="tab-pane fade" id="tab-4">
<div class="accordion" id="accordion-4">
<div class="card">
<div class="card-header">
<h5>
<a data-toggle="collapse" data-target="#collapse-4-1">
What will the platform do?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-4-1" class="collapse show" data-parent="#accordion-4">
<div class="card-body">
<p>The platform will act as a central hub that connects employees and employers from around the world to work together. The platform reccomends parties together via their smart resumes.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-4-2">
How will I be paid for my work?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-4-2" class="collapse" data-parent="#accordion-4">
<div class="card-body">
<p>Upon completion of work, the employee will fuel a paycheck that contains information as well as payment, which is then stored onto each user's smart resume. This paycheck will include an employees choice of FIAT currency or cryptocurrency.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-4-3">
What is a smart resume?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-4-3" class="collapse" data-parent="#accordion-4">
<div class="card-body">
<p>A smart resume is much-like a normal resume, but it is created by the network rather than the individual. In order to prevent fraud and false information on the resume, the network will control it where every interaction performed by the user is stored onto it. Every individual on the platform will have a smart resume whether it be a company, employee, student, etc.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-4-4">
Will the platform be strictly for free-lancers?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-4-4" class="collapse" data-parent="#accordion-4">
<div class="card-body">
<p>No. The Krow Network seperates itself from traditional employement sites by allowing any job interaction to occur onto it. Bi-weekly, freelancing, and even internship jobs will all be supported and will have the ability to be stored onto a smart resume. One can work with another party located internationally, or somebody that is minutes away.</p>
</div>
</div>
</div>
</div>
</div><!-- End tab-pane -->
<div class="tab-pane fade" id="tab-5">
<div class="accordion" id="accordion-5">
<div class="card">
<div class="card-header">
<h5>
<a data-toggle="collapse" data-target="#collapse-5-1">
Will individuals in the U.S. be allowed to take part in our ICO?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-5-1" class="collapse show" data-parent="#accordion-5">
<div class="card-body">
<p>Yes. The Krow Network token is registered in the United States as a security as filed under the EDGAR. This protects our token sale under the U.S. Sale of Securities Act of 1933.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-5-2">
How will I pay taxes on my paychecks?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-5-2" class="collapse" data-parent="#accordion-5">
<div class="card-body">
<p>An individual will have the option of filing individualy, or can file through us. We are currently pursuing blockchain-based tax solutions to partner with, where an individual will be able to automatically have their taxes filed after recieving their paycheck.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-5-3">
How will parties be protected on the platform?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-5-3" class="collapse" data-parent="#accordion-5">
<div class="card-body">
<p>Before becoming involved in any sort of partnership, both parties will need to agree to their counterparty's terms. If any of these terms are broken, it will be the individual's responsibility to pursue with legal action.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5>
<a class="collapsed" data-toggle="collapse" data-target="#collapse-5-4">
How is the Pre-Sale protected?<span class="plus-minus"><span class="ti ti-angle-up"></span></span>
</a>
</h5>
</div>
<div id="collapse-5-4" class="collapse" data-parent="#accordion-5">
<div class="card-body">
<p>On February 25th, the Krow Network held a private ICO where we sold about 21,000,000 tokens to private investors. This sale is protected under article D of the sale of security exception regulations.</p>
</div>
</div>
</div>
</div><!-- End accordion -->
</div><!-- End tab-pane -->
</div><!-- End tab-content -->
</div><!-- End tab-custom -->
</div><!-- End col -->
</div><!-- End row -->
</div><!-- End container -->
</div>
<!-- End Section -->
<!-- Start Section -->
<div class="section section-pad section-bg-alt" id="contact">
<div class="container">
<div class="row text-center">
<div class="col">
<div class="section-head">