-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1249 lines (848 loc) · 37.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>
<!-- ShiftKey - Software & Startup Premium Landing Page Template design by DSAThemes (http://www.dsathemes.com) -->
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="author" content="evankaloudis"/>
<meta name="description" content="The best way to take your Bitcoin/Lightning node on the go"/>
<meta name="keywords" content="Zeus, Bitcoin, Lightning, Lightning Network, lnd, c-lightning, wallet, mobile">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- SHARE META -->
<meta property="og:url" content="https://zeusln.app" />
<meta property="og:title" content="Zeus - Bitcoin/Lightning Wallet" />
<meta property="og:description" content="The best way to take your Bitcoin/Lightning node on the go" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://zeusln.app/images/preview.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@evankaloudis" />
<!-- SITE TITLE -->
<title>Zeus - Bitcoin/Lightning Wallet</title>
<!-- FAVICON AND TOUCH ICONS -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png" />
<!-- BOOTSTRAP CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- FONT ICONS -->
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" rel="stylesheet" crossorigin="anonymous">
<link href="css/flaticon.css" rel="stylesheet">
<!-- PLUGINS STYLESHEET -->
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/owl.theme.default.min.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<!-- TEMPLATE CSS -->
<link href="css/main.css" rel="stylesheet">
<!-- RESPONSIVE CSS -->
<link href="css/responsive.css" rel="stylesheet">
</head>
<body>
<!-- PRELOADER SPINNER
============================================= -->
<div id="loader-wrapper">
<div id="loader">
<span class="cssload-loader">
<span class="cssload-loader-inner"></span>
</span>
</div>
</div>
<!-- PAGE CONTENT
============================================= -->
<div id="page" class="page">
<!-- HEADER
============================================= -->
<header id="header" class="header">
<nav class="navbar fixed-top navbar-expand-md navbar-light bg-tra hover-menu">
<div class="container">
<!-- LOGO IMAGE -->
<!-- For Retina Ready displays take a image with double the amount of pixels that your image will be displayed (e.g 240 x 60 pixels) -->
<a href="#hero-2" class="navbar-brand logo-black"><img src="images/logo.png" width="120" height="30" alt="header-logo"></a>
<!-- Responsive Menu Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-bar-icon"><i class="fas fa-bars"></i></span>
</button>
<!-- Navigation Menu -->
<div id="navbarSupportedContent" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item nl-simple"><a class="nav-link" href="#services-1">Benefits</a></li>
<li class="nav-item nl-simple"><a class="nav-link" href="#content-1">Features</a></li>
<li class="nav-item nl-simple"><a class="nav-link" href="#reviews-2">Reviews</a></li>
<li class="nav-item nl-simple"><a class="nav-link" href="#faqs-2">FAQs</a></li>
<!-- <li class="nav-item nl-simple">
<a class="nav-link nav-icon" href="https://github.com/ZeusLN/zeus" target="_blank">
<i class="fab fa-github"></i>
</a>
</li> -->
</ul>
<!-- Header Button -->
<span class="navbar-text white-color">
<a href="https://github.com/ZeusLN/zeus/releases/download/v0.2.0/zeus-v0.2.0.apk" class="btn btn-primary-color tra-black-hover">Download</a>
</span>
</div> <!-- End Navigation Menu -->
</div> <!-- End container -->
</nav> <!-- End navbar -->
</header> <!-- END HEADER -->
<!-- HERO-2
============================================= -->
<section id="hero-2" class="hero-section">
<!-- HERO TEXT -->
<div class="bg-fixed bg-lightgrey hero-2-txt division">
<div class="container">
<div id="hero-2-content" class="row">
<div class="col-md-10 offset-md-1">
<div class="hero-txt text-center">
<!-- Title -->
<h3>The best way to take your Bitcoin/Lightning node on the go</h3>
<!-- Text -->
<p class="p-md">
Connect to your node over VPN or Tor, make payments with lightning or on-chain, manage your channels, and more.
</p>
<!-- HERO NEWSLETTER FORM -->
<form class="hero-newsletter-form">
<!-- Newsletter Inputs -->
<a class="btn btn-primary-color black-hover" href="https://github.com/ZeusLN/zeus/releases/download/v0.2.0/zeus-v0.2.0.apk">
<i class="fas fa-download"></i>
<span>Download v0.2.0 for Android</span>
</a>
</form>
<!-- HERO LINKS -->
<div class="hero-links">
<span class="grey-color">
<a href="https://github.com/ZeusLN/zeus/releases/download/v0.2.0/zeus-v0.2.0.apk.asc">Developer Signature</a>
</span><br><br>
<span class="grey-color">
Also available for
<a href="https://testflight.apple.com/join/gpVFzEHN">iOS</a>.
Source code available on
<a href="https://github.com/ZeusLN/zeus/releases">GitHub</a>.
</span>
</div>
</div>
</div>
</div>
</div>
</div> <!-- END HERO TEXT -->
<!-- HERO IMAGE -->
<div class="hero-2-img division">
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 offset-md-1 offset-lg-2">
<div class="video-preview text-center">
<!-- Preview Image -->
<img class="img-fluid" src="images/hero-2-img.png" alt="zeus-screenshot">
</div>
</div>
</div>
</div>
</div> <!-- END HERO IMAGE -->
</section> <!-- END HERO-2 -->
<!-- SERVICES-1
============================================= -->
<section id="services-1" class="wide-60 services-section division">
<div class="container">
<div class="row">
<!-- SERVICE BOX #1 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img class="img-70" src="images/icons/coins.png" alt="service-icon" />
<!-- Title -->
<h5 class="h5-xs steelblue-color">Send on-chain or with lightning</h5>
<!-- Text -->
<p>
Send traditional Bitcoin payments on-chain or take advantage of Lightning and experience near-instant settlement
</p>
</div>
</div>
<!-- SERVICE BOX #2 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img class="img-70" src="images/icons/gps.png" alt="service-icon" />
<!-- Title -->
<h5 class="h5-xs steelblue-color">Connect from anywhere</h5>
<!-- Text -->
<p>
Zeus connects to your node remotely over a VPN connection or Tor so you can buy that beer even when you're on the other side of the globe
</p>
</div>
</div>
<!-- SERVICE BOX #3 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="0.8s">
<!-- Icon -->
<img class="img-70" src="images/icons/sitemap.png" alt="service-icon" />
<!-- Title -->
<h5 class="h5-xs steelblue-color">Manage channels on the go</h5>
<!-- Text -->
<p>
No need to wait till you get home to connect to a storefront or newly made acquaintance
</p>
</div>
</div>
<!-- SERVICE BOX #4 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="1s">
<!-- Icon -->
<img class="img-70" src="images/icons/chat-2.png" alt="service-icon" />
<!-- Title -->
<h5 class="h5-xs steelblue-color">Open Source</h5>
<!-- Text -->
<p>
Zeus' source code is open for anyone to view. Code contributions, suggestions, and bug reports are all appreciated
</p>
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END SERVICES-1 -->
<!-- HORIZONTAL GREY LINE
============================================= -->
<div class="grey-border">
<div class="container"><div class="row"><div class="col b-bottom"></div></div></div>
</div>
<!-- CONTENT-1
============================================= -->
<section id="content-1" class="wide-60 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- TEXT BLOCK -->
<div class="col-md-6">
<div class="txt-block pc-30 wow fadeInUp" data-wow-delay="0.4s">
<!-- Section ID -->
<span class="section-id primary-color">Complete Control</span>
<!-- Title -->
<h3 class="h3-md steelblue-color">Get a complete view of your node right in your hand</h3>
<!-- CONTENT BOX #1 -->
<div class="box-list m-top-15">
<div class="box-list-icon"><i class="fas fa-genderless"></i></div>
<p>
Get a breakdown of each of your connected channels and see how each one is balanced
</p>
</div>
<!-- CONTENT BOX #2 -->
<div class="box-list">
<div class="box-list-icon"><i class="fas fa-genderless"></i></div>
<p>
Get reports of how much you made in routing fees in the past day, week, or month
</p>
</div>
<!-- CONTENT BOX #2 -->
<div class="box-list">
<div class="box-list-icon"><i class="fas fa-genderless"></i></div>
<p>
Adjust your routing fee rates on the fly
</p>
</div>
<!-- CONTENT BOX #3 -->
<div class="box-list">
<div class="box-list-icon"><i class="fas fa-genderless"></i></div>
<p>
Generate connection QR codes so others can connect to you
</p>
</div>
</div>
</div> <!-- END TEXT BLOCK -->
<!-- IMAGE BLOCK -->
<div class="col-md-4">
<div class="img-block wow fadeInUp" data-wow-delay="0.6s">
<img class="img-fluid content-1-img" src="images/image-04.png" alt="content-image">
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END CONTENT-1 -->
<!-- CONTENT-6
============================================= -->
<section id="content-6" class="bg-lightgrey pt-100 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- IMAGE BLOCK -->
<div class="col-md-6">
<div class="content-6-img wow fadeInLeft" data-wow-delay="0.6s">
<img class="img-fluid" src="images/image-12.png" alt="content-image" srcset="images/image-12.png 2x">
</div>
</div>
<!-- TEXT BLOCK -->
<div class="col-md-6">
<div class="txt-block pc-30 wow fadeInUp" data-wow-delay="0.4s">
<!-- Title -->
<h5 class="h5-md steelblue-color">Dynamic fee table</h5>
<!-- Text -->
<p>
Set fees appropriately with just the press of a button with a fee table powered by <a href="https://whatthefee.io">WhatTheFee.io</a>
</p>
<!-- Title -->
<h5 class="h5-md steelblue-color">Incredible integrations</h5>
<!-- Text -->
<p>
Zeus is proud to be integrated on the following node platforms: <a href="https://btcpayserver.org/">BTCPay Server</a>, <a href="https://www.nodl.it/">nodl</a>, <a href="http://mynodebtc.com/">myNode</a>, and <a href="https://raspiblitz.com/">RaspiBlitz</a>. These platforms all provide the QR codes you need to quickly connect Zeus to your node.
</p>
<!-- Title -->
<h5 class="h5-md steelblue-color">Lightning-fast workflows</h5>
<!-- Text -->
<p>
Between support for lnurl and our intelligent QR scanner, Zeus simplifies your workflow so you can get what you want done with less clicks.
</p>
</div>
</div> <!-- END TEXT BLOCK -->
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END CONTENT-6 -->
<!-- SERVICES-8
============================================= -->
<section id="services-8" class="wide-50 services-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Title -->
<h3 class="h3-md steelblue-color">But wait, there's more...</h3>
</div>
</div> <!-- END SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1">
<div class="row">
<!-- SERVICE BOX #1 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img class="img-70" src="images/icons/smartphone.png" alt="service-icon" />
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Cross-platform</h5>
<p class="grey-color">
Zeus runs on both iOS and Android.
</p>
</div>
</div>
</div>
<!-- SERVICE BOX #2 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img class="img-70" src="images/icons/safebox.png" alt="service-icon" />
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Keep your funds secure and private</h5>
<p class="grey-color">
Zeus has an optional passcode and a demo mode so you can show off to your friends without revealing your connections or balances.
</p>
</div>
</div>
</div>
<!-- SERVICE BOX #3 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img class="img-70" src="images/icons/wallet-1.png" alt="service-icon" />
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Choose your unit of account</h5>
<p class="grey-color">
Switch between bitcoin and satoshi units just by pressing any amount you see in the app. Into fiat? Zeus can be set to display funds into your local currency.
</p>
</div>
</div>
</div>
<!-- SERVICE BOX #4 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img class="img-70" src="images/icons/key-1.png" alt="service-icon" />
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Don't trust us? You don't have to.</h5>
<p class="grey-color">
Zeus doesn't collect any data other than data from crash reports provided by the app stores we're listed on. Furthermore our builds have no proprietary dependencies, are reproducible, and are distributed on F-Droid. Don't trust them, either? You can inspect the source code and build Zeus yourself.
</p>
</div>
</div>
</div>
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END SERVICES-8 -->
<!-- STATISTIC-2
============================================= -->
<div id="statistic-2" class="bg-lightgrey statistic-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Text -->
<p class="p-md">
Zeus has support for multiple lightning implementations
</p>
</div>
</div>
<div class="row">
<!-- STATISTIC BLOCK #1 -->
<div class="col-sm-6 col-md-6">
<div class="statistic-block icon-xs wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img class="img-70" src="images/bw_lnlabs.png" alt="service-icon" />
<!-- Text -->
<h5 class="statistic-number steelblue-color">lnd</h5>
</div>
</div>
<!-- STATISTIC BLOCK #2 -->
<div class="col-sm-6 col-md-6">
<div class="statistic-block icon-xs wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img class="img-70" src="images/bw_blockstream.png" alt="service-icon" />
<!-- Text -->
<h5 class="statistic-number steelblue-color">c-lightning</h5>
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
</div> <!-- END STATISTIC-2 -->
<!-- TESTIMONIALS-2
============================================= -->
<section id="reviews-2" class="wide-80 reviews-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Title -->
<h3 class="h3-md steelblue-color">What Bitcoiners Are Saying</h3>
<!-- Text -->
<p class="p-md">
Zeus has received excellent feedback from the community. Here's what some Bitcoin and Lightning enthusiasts have had to say about it:
</p>
</div>
</div>
<!-- TESTIMONIALS CONTENT -->
<div class="row">
<div class="col-md-12 reviews-grid">
<div class="masonry-wrap grid-loaded">
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1116996104153858048/kBKdIucv_400x400.png" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Pavlenex</h5>
<a target="_blank" href="https://twitter.com/pavlenex/status/1225442872276791296">@pavlenex</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
.@ZeusLN is awesome. Just hooked up both of my @BtcpayServer LND and c-lightning remote nodes to my phone.
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1176392233932578816/gfFFt4os_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Man On A Moon</h5>
<a target="_blank" href="https://twitter.com/privacyhalt/status/1219491667037712384">@privacyhalt</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
Anyone running a @nodl_it should consider the @ZeusLN lightning wallet. Works amazingly well over Tor with full control over channel management. Awesome work @evankaloudis!!
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1112270423570288640/phd6OPNO_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Stephan Livera</h5>
<a target="_blank" href="https://twitter.com/stephanlivera/status/1189695557670862849">@stephanlivera</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
Great episode! Nice to hear about Zeus, great lightning wallet
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1117458191791603712/1PTVqqG6_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Pierre Rochard</h5>
<a target="_blank" href="https://twitter.com/pierre_rochard">@pierre_rochard</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
Of course! Zeus is a fantastic solution!
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1123668725343956995/4G7hzDE4_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Max Hillebrand</h5>
<a target="_blank" href="https://twitter.com/HillebrandMax/status/1140865903975960577">@HillebrandMax</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
Whaaaaaat?!?
</p>
<p>
I did not know that @ZeusLN is the first wallet to finally implement @FelixWeis whatthefee.io.
</p>
<p>
I think it's the best representation of the mempool and fee estimation!
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1223838221483880451/94M6MC7-_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Seth586</h5>
<a target="_blank" href="https://twitter.com/seth586">@seth586</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
@ZeusLN is by far my favorite, simply because it supports tor connections to my home node!
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/912410168993943552/MUoJIpwq_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">bn4t</h5>
<a target="_blank" href="https://twitter.com/_bn4t">@_bn4t</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
Set up my own LND node yesterday and connected using the @ZeusLN app.
</p>
<p>
Looks awesome
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1140697561109602304/Mjv7BFxF_400x400.jpg" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">openoms</h5>
<a target="_blank" href="https://twitter.com/openoms/status/1115536560332726272">@openoms</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
My favourite is @ZeusLN. Reliable clearnet and Tor connection (on Android with Orbot) using macaroons. Scans BTCpayServer and LndConnect QR-s. Available from Github, F-Droid, Google Play, Apple Store. Dark mode, channel balances visualised, love it 🖤
</p>
</div>
</div> <!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img src="https://pbs.twimg.com/profile_images/1424871613/avatar_400x400.png" alt="testimonial-avatar">
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Klaus Koch</h5>
<a target="_blank" href="https://twitter.com/Ratchet3141/status/1114938356771840003">@Ratchet3141</a>
</div>
</div> <!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
@ZeusLN my favorite lightning wallet Zeus just appeared on fdroid for me! Thanks for your hard work guys!
</p>
</div>
</div> <!--END TESTIMONIAL -->
</div>
</div>
</div> <!-- END TESTIMONIALS CONTENT -->
</div> <!-- End container -->
</section> <!-- END TESTIMONIALS-2 -->
<!-- FAQs-2
============================================= -->
<section id="faqs-2" class="bg-lightgrey wide-100 faqs-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Title -->
<h3 class="h3-md steelblue-color">Frequently Asked Questions</h3>
</div>
</div>
<div class="row">
<!-- QUESTIONS HOLDER -->
<div class="col-lg-6">
<div class="questions-holder">
<!-- QUESTION #1 -->
<div class="question wow fadeInUp" data-wow-delay="0.4s">
<!-- Question -->
<h5 class="h5-xs steelblue-color">How much does it cost?</h5>
<!-- Answer -->
<p>
Nothing. Zeus is 100% open source and free.
</p>
</div>
<!-- QUESTION #2 -->
<div class="question wow fadeInUp" data-wow-delay="0.8s">
<!-- Question -->
<h5 class="h5-xs steelblue-color">What information do you collect?</h5>
<!-- Answer -->
<p>
We do not collect any usage or analytics information when you view this website or when you use Zeus on your phone, with the exception of the crash reports that the app stores provide. Your privacy is incredibly important to us.
</p>
</div>
<!-- QUESTION #3 -->
<div class="question wow fadeInUp" data-wow-delay="0.8s">
<!-- Question -->
<h5 class="h5-xs steelblue-color">I connected Zeus to my node but the balances incorrectly display as 0</h5>
<!-- Answer -->
<p>
Make sure you connect Zeus to your node's REST service. Other lightning wallets are known to use GRPC instead.
</p>
</div>
</div>
</div> <!-- END QUESTIONS HOLDER -->
<!-- QUESTIONS HOLDER -->
<div class="col-lg-6">
<div class="questions-holder ind-30">
<!-- QUESTION #4 -->
<div class="question wow fadeInUp" data-wow-delay="0.6s">
<!-- Question -->