-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex-old.html
1056 lines (1030 loc) · 60.5 KB
/
index-old.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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta property="og:url" content="https://www.supernetworks.org/" />
<meta property="og:title" content="Supernetwork Routers" />
<meta
property="og:description"
content="Create adaptive, micro-segmented networks for connecting and managing devices."
/>
<meta
name="description"
content="Supernetworks provides comprehensive home network security, featuring advanced tools such as Ad Block and Wireguard VPN, alongside efficient Network Monitoring. SPR offers innovative micro-segmentation with Zero Trust Network Access, ensuring each device has its unique passphrase for enhanced security. Ideal for safeguarding WiFi and IoT devices, our solution offers real-time network insights. Built on open-source technology, it's compatible with Linux and Docker environments. It can also run as a Cloud-native Wireguard VPN Ad Blocker. Create adaptive, micro-segmented networks for connecting and managing devices."
/>
<meta
property="og:image"
content="https://www.supernetworks.org/assets/img/bgs/bg-dark.png"
/>
<link href="/output.css" rel="stylesheet" />
<script>
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags getFeatureFlag getFeatureFlagPayload reloadFeatureFlags group updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures getActiveMatchingSurveys getSurveys onSessionId".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('phc_wHrv9J5yEKPecDYT9ligBWKlIi2LBDL7I4heu69ayOT',{api_host:'https://us.i.posthog.com'})
</script>
<script src="tailwind.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<title>Secure Programmable WiFi Router | SPR by Supernetworks</title>
<style>
body {
font-family: 'Inter', sans-serif;
}
.gradient-bg {
background: linear-gradient(135deg, #1a202c, #2d3748);
}
.gradient-text {
background: -webkit-linear-gradient(45deg, #4fd1c5, #6ee7b7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.glow {
box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}
.grid-bg {
/*background-image: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(45, 55, 72, 0.8)), url("grid-bg.svg");*/
background-size: cover;
background-position: center;
}
.glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.hover-scale {
transition: transform 0.3s;
}
.hover-scale:hover {
transform: scale(1.05);
}
.nav-item {
position: relative;
}
.nav-item:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background: linear-gradient(45deg, #4fd1c5, #6ee7b7);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.nav-item:hover:after {
transform: scaleX(1);
}
</style>
</head>
<body class="bg-gray-900 text-white">
<header class="gradient-bg text-white py-4 fixed top-0 left-0 right-0 z-50">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row md:justify-between md:items-center">
<div class="flex justify-between items-center">
<a href="#" class="text-2xl md:text-3xl font-bold tracking-tight">
<span class="gradient-text">SPR</span> by Supernetworks
</a>
<div class="md:hidden">
<button id="trigger-mobile-menu" class="text-white hover:text-green-400 hover:underline transition duration-300">
<img width="24" height="24" src="/assets/img/mobilemenus.svg" alt="Menu">
</button>
</div>
</div>
<nav class="hidden md:flex md:items-center md:space-x-8 mt-4 md:mt-0" id="mobile-menu">
<ul class="flex flex-col md:flex-row md:space-x-8">
<li>
<a href="#features" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">Features</a>
</li>
<li>
<a href="https://www.supernetworks.org/features.html" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">Comparison</a>
</li>
<li>
<a href="https://www.supernetworks.org/pages/docs/faq" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">FAQ</a>
</li>
<li>
<a href="#products" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">Products</a>
</li>
<li>
<a href="#how-to-use" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">How to Use</a>
</li>
<li>
<a href="#plus" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">PLUS</a>
</li>
<li><a href="https://www.supernetworks.org/pages/blog" class="block py-2 px-4 text-lg font-semibold hover:text-green-400 transition duration-300 nav-item">Blog</a></li>
</ul>
</nav>
</div>
</div>
</header>
<script>
let el = document.getElementById('trigger-mobile-menu')
let menu = document.getElementById('mobile-menu')
el.addEventListener('click', function () {
menu.classList.toggle('hidden')
})
document.addEventListener('click', function (event) {
const target = event.target
if (!menu.contains(target) && !el.contains(target)) {
menu.classList.add('hidden')
}
})
</script>
<main class="container mx-auto px-4 pt-32 pb-24">
<section class="mb-12 md:mb-32">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 tracking-tight">
A Secure Network Does Not Have To Be 🚀🧑🔬 <span class="gradient-text">Rocket Science</span>
</h1>
<p class="text-2xl md:text-3xl font-light mb-10">Supernetworks makes Fast, Secure, and Feature-Packed Open-Source Routers</p>
<div class="flex flex-row md:flex-row gap-4 justify-center" role="group">
<a href="#how-to-use">
<button
type="button"
class="w-full md:w-auto text-slate-50 bg-green-600 hover:text-white hover:bg-green-800 focus:ring-4 focus:ring-blue-300 font-medium rounded px-5 py-2"
>
Get Started
</button>
</a>
<a href="#products">
<button
type="button"
class="w-full md:w-auto text-slate-50 bg-teal-500 hover:text-white hover:bg-teal-800 focus:ring-4 focus:ring-blue-300 font-medium rounded px-5 py-2"
>
Products
</button>
</a>
</div>
</div>
<div class="md:w-1/3 mb-8 md:mb-0 px-8">
<img src="/assets/img/logo-transparent.png" >
</div>
</div>
</div>
</section>
<section class="mb-12 md:mb-32">
<div class="flex flex-col md:grid md:grid-cols-2 gap-8 md:gap-16 items-center">
<div class="mb-8 md:mb-0">
<h2 class="text-3xl md:text-4xl font-bold mb-6 md:mb-8 text-yellow-400">⚠️ Why Put Up With Weak Security? </h2>
<ul class="mb-8 text-lg md:text-xl space-y-4 md:space-y-6">
<li>
<h3 class="text-xl md:text-2xl font-semibold mb-2 text-yellow-500">Password Sharing Inherently Insecure</h3>
<p class="">Sharing wireless passwords means devices can snoop traffic and modify packets. When recycling or selling an old device, does a device reset really remove the wifi password correctly? Who has time to redo all of their existing device setups?</p>
</li>
<li>
<h3 class="text-xl md:text-2xl font-semibold mb-2 text-yellow-500">Insecure IoT Devices Increase Risk</h3>
<p class="">Many IoT devices are hackable, never get security updates, and may not respect your home privacy. Cloud connectivity means an attack on the IoT company can lead to access to your network without your knowledge</p>
</li>
<li>
<h3 class="text-xl md:text-2xl font-semibold mb-2 text-yellow-500">Limited Network Isolation</h3>
<p class="">Why should your vacuum be able talk to your doorbell? Inadequate network isolation makes breaches worse. </p>
</li>
<li>
<h3 class="text-xl md:text-2xl font-semibold mb-2 text-yellow-500">Other Routers Come With Security Holes 🧀</h3>
<p class="">Common routers and even enterprise routers have legacy code and poor software security practices. Attackers have been targetting home routers as entrypoints for cyber attacks leading to <a href="https://www.cisa.gov/news-events/alerts/2024/01/31/cisa-and-fbi-release-secure-design-alert-urging-manufacturers-eliminate-defects-soho-routers" class="underline">CISA and the FBI calling on manufacturers to improve security</a></p>
</li>
<li>
<h3 class="text-xl md:text-2xl font-semibold mb-2 text-yellow-500"> Cloud Companies Collect Too Much Data 🚫☁️</h3>
<p class="">Your home network is yours, and your personal data does not have to be constantly beamed out and away. Firewall off continuous data collection</p>
</li>
</ul>
</div>
<div class="text-center">
<img src="/assets/img/bgs/bg.png" alt="Home Network Security Risks" class="w-full rounded-xl shadow-lg opacity-80 hover:opacity-100 inline-block">
<p class="text-lg font-semibold bg-gray-800 text-gray-300 py-1 px-4 mt-4 inline-block rounded">Homes are more connected than ever</p>
</div>
</div>
</section>
<section id="demo" class="mb-12 md:mb-32">
<h2 class="text-4xl md:text-5xl text-center font-bold mb-6 md:mb-8"><span class="">Build</span> Your Network With <span class="">SPR</span></h2>
<div class="p-4 z-index-1000 mx-auto max-w-full md:max-w-5xl bg-neutral-100 dark:bg-transparent md:bg-transparent">
<div class="border-neutral-800 border bg-gray-950 dark:bg-black py-3 px-3 md:px-5 md:py-5 rounded-t-3xl rounded-b-3xl cursor-pointer" onclick="location.href='https://demo.supernetworks.org/'">
<div class="rounded-t-2xl rounded-b-2xl">
<img class="w-full" src="/assets/img/screenshot-home-light.png">
</div>
<div>
<a class="block py-4 text-center text-xs text-gray-300 hover:text-slate-100" href="https://demo.supernetworks.org/" target="_blank">Try the UI demo →</a>
</div>
</div>
</div>
</section>
<section id="features" class="mb-12 md:mb-32">
<div class="flex flex-col md:grid md:grid-cols-2 gap-8 md:gap-16 items-center">
<div class="mb-8 md:mb-0">
<h2 class="text-4xl md:text-5xl font-bold mb-6 md:mb-8">Lightning-Fast WiFi Speeds</h2>
<p class="text-xl md:text-2xl font-light mb-6 md:mb-8">Experience true WiFi 6 speeds with SPR.</p>
<ul class="mb-8 text-lg md:text-xl">
<li class="mb-2 flex items-center">
⚡ 80MHz channels see real speeds above 700 Mbps
</li>
<li class="mb-2 flex items-center">
⚡ 160MHz channels see real speeds above 1 Gbps
</li>
</ul>
<p class="text-lg md:text-xl">Load balancing ensures your network can handle heavy traffic while supporting a fully featured firewall.</p>
</div>
<div class="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-4">
<div class="rounded-lg shadow-2xl overflow-hidden glow hover-scale w-full md:w-2/5">
<img src="/assets/img/speedpi5hat.png" alt="SpeedTest" title="80 MHz 2 Spatial Streams 4 Meter Distance, iPhone 15" class="w-full h-auto">
</div>
<div class="rounded-lg shadow-2xl overflow-hidden glow hover-scale w-full md:w-2/5">
<img src="/assets/img/iphone15160mhz.png" alt="SpeedTest160" title="160 MHz 2 Spatial Streams 4 Meter Distance, iPhone 15" class="w-full h-auto">
</div>
</div>
</div>
</section>
<section class="mb-12 md:mb-32">
<div class="grid-bg rounded-lg shadow-2xl p-8 md:p-16">
<div class="text-center mb-6 md:mb-12">
<h2 class="text-4xl md:text-5xl font-bold mb-4 md:mb-8">Build A Secure Network By Default</h2>
<h3 class="text-2xl md:text-3xl font-light">With The Best WiFi Security</h3>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-12">
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">One Password Per Device</h3>
<p class="text-lg md:text-xl">WPA3, WPA2 supported. Unlimited devices. Users can sync passwords for iCloud Keychain password sharing.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">True Device Isolation</h3>
<p class="text-lg md:text-xl">Each device is on its own VLAN and subnetwork. Admins manage the network with intuitive policies and groups rather than tracking VLANs, IPs, and MAC addresses.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Secure Code</h3>
<p class="text-lg md:text-xl">Secure, open-source software built from the ground up using Golang and React.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">DNS Security</h3>
<p class="text-lg md:text-xl">DNS over HTTPS by default, DNS Rebinding Protection, DNS Logs, and support for Malware Blocklists.</p>
</div>
</div>
</div>
</section>
<section class="mb-12 md:mb-32">
<div class="grid-bg rounded-lg shadow-2xl p-8 md:p-16">
<h2 class="text-4xl md:text-5xl font-bold mb-6 md:mb-8">Self-Hosted, Privacy Preserving, and Feature Rich</h2>
<p class="text-xl md:text-2xl mb-8 md:mb-12">Unlike other products that rely on the cloud for advanced features, we bring them all to you, on-device.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12">
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="h-8 md:h-12 w-16 md:w-12 mb-4 text-green-400" viewbox="0 0 80 80"><g fill="currentColor"><path d="M80 40.08c0-8.978-3.04-17.635-8.64-24.689h0l-.32-.321c-.16-.16-.16-.321-.32-.481l-2.56-2.726h0C60.64 4.168 50.72 0 40 0h-.16 0-.16C29.12.16 19.36 4.168 11.84 11.703h0l-2.72 2.886c-.16.16-.16.321-.32.481l-.32.16h0C3.04 22.285 0 31.102 0 40.08s3.04 17.635 8.64 24.689h0l.32.321c.16.16.16.321.32.481l2.56 2.725h0C19.36 75.832 29.12 80 39.68 80h.16 0H40c10.56 0 20.64-4.168 28.16-11.703h0l2.56-2.886c.16-.16.16-.321.32-.481l.32-.321h0C76.96 57.876 80 49.058 80 40.08zM63.84 13.948c-.16 0-.32.16-.48.16-.32.16-.64.321-.8.321-.64.321-1.44.481-2.24.802-.16 0-.32.16-.48.16-.96.321-1.76.481-2.72.802h0c-.16 0-.48.16-.64.16-1.44-3.848-3.2-7.214-5.28-9.78 4.64 1.443 8.96 4.008 12.64 7.375zM39.68 4.649h0c4.48 0 8.96 4.649 12.16 12.665-3.68.641-7.68.962-11.84.962s-8.32-.32-12.16-.962C30.88 9.459 35.36 4.81 39.68 4.649zM28.32 6.734c-1.92 2.565-3.68 5.772-5.12 9.619h-.32 0c-.96-.321-1.92-.481-2.72-.802-.16 0-.32-.16-.48-.16-.64-.321-1.44-.641-2.08-.962-.32-.16-.48-.16-.8-.321-.16-.16-.32-.16-.64-.321 3.68-3.046 7.68-5.611 12.16-7.054zM16.16 66.212c.16 0 .32-.16.48-.16.32-.16.48-.16.8-.321.64-.321 1.44-.481 2.24-.802.16 0 .32-.16.48-.16.96-.32 1.76-.481 2.72-.802h0 .32c1.44 3.688 3.2 7.054 5.12 9.619-4.48-1.603-8.64-4.168-12.16-7.375zm23.68 9.299h0c-4.48-.16-8.96-4.649-12-12.505 3.84-.641 8-.962 12.16-.962s8 .321 11.84.962c-3.04 7.856-7.68 12.505-12 12.505zm11.36-1.924c2.08-2.565 3.84-5.932 5.28-9.78.16 0 .48.16.64.16h0c.96.321 1.92.481 2.72.802.16 0 .32.16.48.16.8.321 1.44.481 2.24.802.32.16.48.16.8.321.16 0 .32.16.64.32-3.84 3.207-8.16 5.772-12.8 7.215zm16.16-11.062h0c-.48 0-.8-.16-1.28-.321s-1.12-.481-1.6-.641c-.16 0-.32-.16-.48-.16-1.92-.802-4-1.282-6.08-1.924.48-1.924.96-3.848 1.28-5.772h-4.8c-.32 1.764-.64 3.367-1.12 4.81-4.16-.802-8.64-1.122-13.28-1.122-4.8 0-9.28.481-13.6 1.283-.48-1.603-.8-3.206-1.12-4.97h-4.8c.32 2.084.8 4.008 1.28 5.932-1.92.481-3.84 1.122-5.6 1.763-.16.16-.48.16-.64.321-.48.16-1.12.481-1.6.641-.32 0-.8.16-1.12.321h0C8 56.914 5.28 49.7 4.8 42.325h4v-4.649h-4c.48-7.375 3.2-14.429 7.84-20.04l.16-.16c.32.16.8.321 1.12.481.64.32 1.12.481 1.76.802.16 0 .32.16.48.16 1.76.641 3.68 1.283 5.76 1.764-.48 1.764-.8 3.527-1.12 5.291h4.8l.96-4.329c4.32.802 8.96 1.282 13.6 1.282s9.12-.481 13.28-1.122c.32 1.283.64 2.725.96 4.329h4.8c-.32-1.763-.64-3.527-1.12-5.291 2.08-.481 4-1.122 5.92-1.924.16 0 .48-.16.64-.16.64-.16 1.12-.481 1.76-.641.32-.16.8-.321 1.12-.481h0c4.64 5.772 7.52 12.826 8 20.2h-4.8v4.649h4.8c-.8 7.214-3.52 14.429-8.16 20.04zM29.92 39.759c0 1.924-.32 3.527-.8 4.81s-1.28 2.405-2.08 3.367c-.96.802-2.08 1.443-3.36 1.924-1.28.321-2.88.641-4.8.641h-4.96c-.32 0-.64-.16-.96-.321s-.16-.641-.16-1.122V30.941c0-.481.16-.802.32-.962s.48-.321.96-.321h5.28c1.92 0 3.36.16 4.64.641s2.4 1.122 3.2 1.924 1.6 1.924 2.08 3.206c.32 1.282.64 2.725.64 4.329zm-4.32.16c0-.962-.16-1.924-.32-2.725s-.64-1.603-1.12-2.245-1.12-1.122-1.92-1.443-1.76-.481-3.2-.481h-2.08v14.108h2.24c1.12 0 2.08-.16 2.88-.481s1.44-.802 1.92-1.283c.48-.641.96-1.282 1.12-2.244.32-.962.48-2.084.48-3.206zm24.8 8.978c0 .321 0 .481-.16.641s-.16.321-.32.481-.32.16-.48.32c-.16 0-.32.16-.64.16h-1.76c-.32 0-.64 0-.96-.16-.32 0-.48-.16-.8-.481-.16-.16-.48-.481-.64-.802s-.48-.802-.64-1.283l-5.12-9.619c-.32-.641-.64-1.122-.96-1.924-.32-.641-.64-1.283-.8-1.924h0c0 .802 0 1.603.16 2.244v2.405 10.902c0 .16 0 .16-.16.321 0 .16-.16.16-.32.16s-.32.16-.64.16h-.96-.96c-.32 0-.48 0-.64-.16-.16 0-.16-.16-.32-.16v-.321V31.26c0-.481.16-.802.48-1.122s.64-.321 1.12-.321h2.24c.48 0 .8 0 .96.16.32 0 .48.16.8.321.16.16.48.321.64.641a9.18 9.18 0 0 0 .64 1.122l4 7.535c.16.481.48.962.64 1.282.16.481.48.962.64 1.283.16.481.48.802.64 1.283s.32.802.64 1.283h0v-2.405-2.245V30.3c0-.16 0-.16.16-.321 0-.16.16-.16.32-.16s.32-.16.64-.16h.96.96c.32 0 .48 0 .64.16.16 0 .16.16.32.16v.321 18.597h-.32z"/><path d="M67.2 44.248c0 1.122-.16 2.084-.64 2.886s-.96 1.443-1.6 2.084c-.64.481-1.44.962-2.4 1.282s-1.92.481-3.04.481c-.64 0-1.44 0-1.92-.16L56 50.34c-.48-.16-.8-.32-1.12-.481s-.48-.321-.64-.481-.16-.321-.32-.641c0-.32-.16-.641-.16-1.122v-.802c0-.16 0-.481.16-.481 0-.16.16-.16.16-.321 0 0 .16-.16.32-.16s.32.16.64.321.64.321 1.12.641c.48.16.96.481 1.6.641s1.28.321 2.08.321c.48 0 .96 0 1.44-.16s.8-.321.96-.481c.32-.16.48-.481.64-.802s.16-.641.16-1.122-.16-.802-.32-1.283l-.96-.962c-.48-.321-.8-.481-1.44-.802-.48-.16-1.12-.481-1.6-.802s-1.12-.481-1.6-.802-.96-.641-1.44-1.122-.8-.962-.96-1.603c-.32-.641-.32-1.283-.32-2.245s.16-1.924.48-2.565c.32-.802.8-1.443 1.44-1.924s1.28-.802 2.24-1.122c.8-.321 1.76-.321 2.72-.321.48 0 .96 0 1.44.16.48 0 .96.16 1.44.321s.8.321 1.12.481.48.32.64.32c.16.16.16.16.16.321 0 0 0 .16.16.321v.481.641.802.481c0 .16-.16.16-.16.321 0 0-.16.16-.32.16s-.32 0-.48-.16l-.96-.481c-.32-.16-.8-.321-1.28-.481s-.96-.16-1.6-.16c-.48 0-.8 0-1.12.16s-.64.321-.8.481-.32.481-.48.641c-.16.321-.16.641-.16.802 0 .481.16.802.32 1.122l.96.962c.48.321.96.481 1.44.802.48.16 1.12.481 1.6.802s1.12.481 1.6.802.96.641 1.44 1.122.8.962.96 1.603c-.16.16 0 .802 0 1.764z"/></g></svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">DNS-based Ad Blocking</h3>
<p class="text-lg md:text-xl">Block ads and trackers at the network level for all your devices.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Built-in WireGuard VPN</h3>
<p class="text-lg md:text-xl">Secure your connections with native WireGuard VPN support.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Advanced Firewall & Routing</h3>
<p class="text-lg md:text-xl">Take control of your network with sophisticated firewall rules and routing options.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Traffic Monitoring & Statistics</h3>
<p class="text-lg md:text-xl">Gain insights into your network usage with real-time monitoring and statistics.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Customizable Alerts</h3>
<p class="text-lg md:text-xl">Stay informed about important network events with a customizable alert system.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Plugins</h3>
<p class="text-lg md:text-xl">Expand SPR's capabilities with plugins for Tailscale, Wireshark, and more.</p>
</div>
</div>
</div>
</section>
<section id="plus" class="mb-12 md:mb-32">
<div class="grid-bg rounded-lg shadow-2xl p-8 md:p-16" onclick="location.href='https://www.supernetworks.org/plus.html'">
<h2 class="text-4xl md:text-5xl font-bold mb-6 md:mb-8">PLUS Subscription Service</h2>
<p class="text-xl md:text-2xl mb-8 md:mb-12">SPR is free for personal use, PLUS offers extended features & lets you back the development of SPR. Use it to unlock advanced firewall and networking features with our <a href="https://www.supernetworks.org/plus.html" class="text-green-400 hover:text-green-300 transition duration-300">PLUS</a> subscription:</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12">
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="h-8 md:h-12 w-16 md:w-12 mb-4 text-green-400" viewbox="0 0 80 80"><g fill="currentColor"><path d="M80 40.08c0-8.978-3.04-17.635-8.64-24.689h0l-.32-.321c-.16-.16-.16-.321-.32-.481l-2.56-2.726h0C60.64 4.168 50.72 0 40 0h-.16 0-.16C29.12.16 19.36 4.168 11.84 11.703h0l-2.72 2.886c-.16.16-.16.321-.32.481l-.32.16h0C3.04 22.285 0 31.102 0 40.08s3.04 17.635 8.64 24.689h0l.32.321c.16.16.16.321.32.481l2.56 2.725h0C19.36 75.832 29.12 80 39.68 80h.16 0H40c10.56 0 20.64-4.168 28.16-11.703h0l2.56-2.886c.16-.16.16-.321.32-.481l.32-.321h0C76.96 57.876 80 49.058 80 40.08zM63.84 13.948c-.16 0-.32.16-.48.16-.32.16-.64.321-.8.321-.64.321-1.44.481-2.24.802-.16 0-.32.16-.48.16-.96.321-1.76.481-2.72.802h0c-.16 0-.48.16-.64.16-1.44-3.848-3.2-7.214-5.28-9.78 4.64 1.443 8.96 4.008 12.64 7.375zM39.68 4.649h0c4.48 0 8.96 4.649 12.16 12.665-3.68.641-7.68.962-11.84.962s-8.32-.32-12.16-.962C30.88 9.459 35.36 4.81 39.68 4.649zM28.32 6.734c-1.92 2.565-3.68 5.772-5.12 9.619h-.32 0c-.96-.321-1.92-.481-2.72-.802-.16 0-.32-.16-.48-.16-.64-.321-1.44-.641-2.08-.962-.32-.16-.48-.16-.8-.321-.16-.16-.32-.16-.64-.321 3.68-3.046 7.68-5.611 12.16-7.054zM16.16 66.212c.16 0 .32-.16.48-.16.32-.16.48-.16.8-.321.64-.321 1.44-.481 2.24-.802.16 0 .32-.16.48-.16.96-.32 1.76-.481 2.72-.802h0 .32c1.44 3.688 3.2 7.054 5.12 9.619-4.48-1.603-8.64-4.168-12.16-7.375zm23.68 9.299h0c-4.48-.16-8.96-4.649-12-12.505 3.84-.641 8-.962 12.16-.962s8 .321 11.84.962c-3.04 7.856-7.68 12.505-12 12.505zm11.36-1.924c2.08-2.565 3.84-5.932 5.28-9.78.16 0 .48.16.64.16h0c.96.321 1.92.481 2.72.802.16 0 .32.16.48.16.8.321 1.44.481 2.24.802.32.16.48.16.8.321.16 0 .32.16.64.32-3.84 3.207-8.16 5.772-12.8 7.215zm16.16-11.062h0c-.48 0-.8-.16-1.28-.321s-1.12-.481-1.6-.641c-.16 0-.32-.16-.48-.16-1.92-.802-4-1.282-6.08-1.924.48-1.924.96-3.848 1.28-5.772h-4.8c-.32 1.764-.64 3.367-1.12 4.81-4.16-.802-8.64-1.122-13.28-1.122-4.8 0-9.28.481-13.6 1.283-.48-1.603-.8-3.206-1.12-4.97h-4.8c.32 2.084.8 4.008 1.28 5.932-1.92.481-3.84 1.122-5.6 1.763-.16.16-.48.16-.64.321-.48.16-1.12.481-1.6.641-.32 0-.8.16-1.12.321h0C8 56.914 5.28 49.7 4.8 42.325h4v-4.649h-4c.48-7.375 3.2-14.429 7.84-20.04l.16-.16c.32.16.8.321 1.12.481.64.32 1.12.481 1.76.802.16 0 .32.16.48.16 1.76.641 3.68 1.283 5.76 1.764-.48 1.764-.8 3.527-1.12 5.291h4.8l.96-4.329c4.32.802 8.96 1.282 13.6 1.282s9.12-.481 13.28-1.122c.32 1.283.64 2.725.96 4.329h4.8c-.32-1.763-.64-3.527-1.12-5.291 2.08-.481 4-1.122 5.92-1.924.16 0 .48-.16.64-.16.64-.16 1.12-.481 1.76-.641.32-.16.8-.321 1.12-.481h0c4.64 5.772 7.52 12.826 8 20.2h-4.8v4.649h4.8c-.8 7.214-3.52 14.429-8.16 20.04zM29.92 39.759c0 1.924-.32 3.527-.8 4.81s-1.28 2.405-2.08 3.367c-.96.802-2.08 1.443-3.36 1.924-1.28.321-2.88.641-4.8.641h-4.96c-.32 0-.64-.16-.96-.321s-.16-.641-.16-1.122V30.941c0-.481.16-.802.32-.962s.48-.321.96-.321h5.28c1.92 0 3.36.16 4.64.641s2.4 1.122 3.2 1.924 1.6 1.924 2.08 3.206c.32 1.282.64 2.725.64 4.329zm-4.32.16c0-.962-.16-1.924-.32-2.725s-.64-1.603-1.12-2.245-1.12-1.122-1.92-1.443-1.76-.481-3.2-.481h-2.08v14.108h2.24c1.12 0 2.08-.16 2.88-.481s1.44-.802 1.92-1.283c.48-.641.96-1.282 1.12-2.244.32-.962.48-2.084.48-3.206zm24.8 8.978c0 .321 0 .481-.16.641s-.16.321-.32.481-.32.16-.48.32c-.16 0-.32.16-.64.16h-1.76c-.32 0-.64 0-.96-.16-.32 0-.48-.16-.8-.481-.16-.16-.48-.481-.64-.802s-.48-.802-.64-1.283l-5.12-9.619c-.32-.641-.64-1.122-.96-1.924-.32-.641-.64-1.283-.8-1.924h0c0 .802 0 1.603.16 2.244v2.405 10.902c0 .16 0 .16-.16.321 0 .16-.16.16-.32.16s-.32.16-.64.16h-.96-.96c-.32 0-.48 0-.64-.16-.16 0-.16-.16-.32-.16v-.321V31.26c0-.481.16-.802.48-1.122s.64-.321 1.12-.321h2.24c.48 0 .8 0 .96.16.32 0 .48.16.8.321.16.16.48.321.64.641a9.18 9.18 0 0 0 .64 1.122l4 7.535c.16.481.48.962.64 1.282.16.481.48.962.64 1.283.16.481.48.802.64 1.283s.32.802.64 1.283h0v-2.405-2.245V30.3c0-.16 0-.16.16-.321 0-.16.16-.16.32-.16s.32-.16.64-.16h.96.96c.32 0 .48 0 .64.16.16 0 .16.16.32.16v.321 18.597h-.32z"/><path d="M67.2 44.248c0 1.122-.16 2.084-.64 2.886s-.96 1.443-1.6 2.084c-.64.481-1.44.962-2.4 1.282s-1.92.481-3.04.481c-.64 0-1.44 0-1.92-.16L56 50.34c-.48-.16-.8-.32-1.12-.481s-.48-.321-.64-.481-.16-.321-.32-.641c0-.32-.16-.641-.16-1.122v-.802c0-.16 0-.481.16-.481 0-.16.16-.16.16-.321 0 0 .16-.16.32-.16s.32.16.64.321.64.321 1.12.641c.48.16.96.481 1.6.641s1.28.321 2.08.321c.48 0 .96 0 1.44-.16s.8-.321.96-.481c.32-.16.48-.481.64-.802s.16-.641.16-1.122-.16-.802-.32-1.283l-.96-.962c-.48-.321-.8-.481-1.44-.802-.48-.16-1.12-.481-1.6-.802s-1.12-.481-1.6-.802-.96-.641-1.44-1.122-.8-.962-.96-1.603c-.32-.641-.32-1.283-.32-2.245s.16-1.924.48-2.565c.32-.802.8-1.443 1.44-1.924s1.28-.802 2.24-1.122c.8-.321 1.76-.321 2.72-.321.48 0 .96 0 1.44.16.48 0 .96.16 1.44.321s.8.321 1.12.481.48.32.64.32c.16.16.16.16.16.321 0 0 0 .16.16.321v.481.641.802.481c0 .16-.16.16-.16.321 0 0-.16.16-.32.16s-.32 0-.48-.16l-.96-.481c-.32-.16-.8-.321-1.28-.481s-.96-.16-1.6-.16c-.48 0-.8 0-1.12.16s-.64.321-.8.481-.32.481-.48.641c-.16.321-.16.641-.16.802 0 .481.16.802.32 1.122l.96.962c.48.321.96.481 1.44.802.48.16 1.12.481 1.6.802s1.12.481 1.6.802.96.641 1.44 1.122.8.962.96 1.603c-.16.16 0 .802 0 1.764z"/></g></svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Domain-Name Based Firewall Rules</h3>
<p class="text-lg md:text-xl">Create sophisticated firewall rules based on domain names for granular control.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Scheduled Firewall Policies</h3>
<p class="text-lg md:text-xl">Automatically apply firewall rules and policies on a schedule for effortless management.</p>
</div>
<div class="glass p-6 md:p-8 rounded-lg hover-scale">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 md:h-12 w-8 md:w-12 mb-4 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>
<h3 class="text-xl md:text-2xl font-semibold mb-4">Mesh Support</h3>
<p class="text-lg md:text-xl">Extend your network coverage with seamless support for SPR Mesh devices.</p>
</div>
</div>
</div>
</section>
<section id="products" class="mb-12 md:mb-32">
<div class="grid-bg rounded-lg shadow-2xl p-8 md:p-16">
<div class="text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-8 md:mb-12">Product Store</h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12" onclick="location.href='order.html'">
<div class="bg-gray-800 rounded-lg p-6 md:p-8 shadow-lg glass hover-scale">
<h3 class="text-2xl md:text-3xl font-semibold mb-4">PI5 HAT</h3>
<div class="mb-6 md:mb-8">
<img src="/assets/img/pi5hatnomount.png" alt="PI5 HAT" class="w-full rounded-lg shadow-md">
</div>
<ul class="text-lg md:text-xl mb-6 md:mb-8">
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Upgrade your PI5 with a powerful WiFi card
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Dual-band, dual-channel WiFi card & antenna bundle add-on
</li>
</ul>
<button class="w-full bg-green-500 text-white font-semibold py-3 px-6 rounded-lg hover:bg-green-600 transition duration-300">Preorder now</button>
</div>
<div class="bg-gray-800 rounded-lg p-6 md:p-8 shadow-lg glass hover-scale">
<h3 class="text-2xl md:text-3xl font-semibold mb-4">PI5 Pod</h3>
<div class="mb-6 md:mb-8">
<img src="/assets/img/pi5podpic.jpg" alt="PI5 Router Pod" class="w-full rounded-lg shadow-md">
</div>
<ul class="text-lg md:text-xl mb-6 md:mb-8 items-start">
<li class="mb-2 flex">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
PI5 HAT bundled with PI5 router, active cooler
</li>
<li class="mb-2 flex ">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Coming Soon: Custom enclosure
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Dual-band, dual-channel WiFi card
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Extend with USB3
</li>
</ul>
<button class="w-full bg-green-500 text-white font-semibold py-3 px-6 rounded-lg hover:bg-green-600 transition duration-300">Preorder now</button>
</div>
<div class="bg-gray-800 rounded-lg p-6 md:p-8 shadow-lg glass hover-scale">
<h3 class="text-2xl md:text-3xl font-semibold mb-4">CM4 Capsule</h3>
<div class="flex justify-center space-x-4 md:space-x-8 mb-6 md:mb-8">
<img src="/assets/img/cm4board.png" alt="CM4" class="rounded-lg shadow-md">
</div>
<ul class="text-lg md:text-xl mb-6 md:mb-8 items-start">
<li class="mb-2 flex">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Perfect for managing IoT devices and extending your WiFi network
</li>
<li class="mb-2 flex ">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Coming Soon: Custom enclosure
</li>
<li class="mb-2 flex ">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Dual-band, dual-channel WiFi card
</li>
<li class="mb-2 flex">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Upgradable hardware with swappable CM4 and mini PCIe card
</li>
</ul>
<button class="w-full bg-green-500 text-white font-semibold py-3 px-6 rounded-lg hover:bg-green-600 transition duration-300">Preorder now</button>
</div>
<div class="bg-gray-800 rounded-lg p-6 md:p-8 shadow-lg glass hover-scale md:col-span-2 ">
<h3 class="text-2xl md:text-3xl font-semibold mb-4 text-center">ClearFog Router Kit</h3>
<div class="flex justify-center mb-6 md:mb-8">
<img src="/assets/img/clearfog.png" alt="ClearFog Router Kit" class="w-2/3 md:w-1/2 rounded-lg shadow-md">
</div>
<ul class="text-lg md:text-xl mb-6 md:mb-8">
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
10 Gbps SFP+ port
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
1 dedicated Ethernet port
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
5-port Gb Ethernet switch
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Dual-band, dual-channel WiFi card
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Custom steel enclosure
</li>
</ul>
<button class="w-1/2 bg-green-500 text-white font-semibold py-3 px-6 rounded-lg hover:bg-green-600 transition duration-300">Order now</button>
</div>
<div class="bg-gray-800 rounded-lg p-6 md:p-8 shadow-lg glass hover-scale">
<h3 class="text-2xl md:text-3xl font-semibold mb-4">PI4 Development Kit</h3>
<div class="flex justify-center mb-6 md:mb-8">
<img src="/assets/img/yellow-pi-case.png" alt="PI4 Router Kit" class="w-2/3 md:w-1/2 rounded-lg shadow-md">
</div>
<ul class="text-lg md:text-xl mb-6 md:mb-8">
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Single-channel USB WiFi 6-e support
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Can be extended with USB3
</li>
<li class="mb-2 flex items-start">
<img class="flex-shrink-0 h-5 md:h-6 w-5 md:w-10 mr-2" src="/assets/img/circlecheck.svg">
Coming soon: Long-range 802.11ah HaLow support
</li>
</ul>
<div class="flex flex-col md:flex-row justify-between gap-4">
<button class="bg-green-500 text-white font-semibold py-3 px-6 rounded-lg hover:bg-green-600 transition duration-300">Order now</button>
</div>
</div>
</div>
</div>
</section>
<section id="how-to-use" class="mb-12 md:mb-32">
<div class="text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-8 md:mb-12">How to Use SPR</h2>
</div>
<div class="p-8 bg-neutral-950 rounded-lg border border-neutral-700">
<h3 class="text-3xl font-semibold md:text-4xl mb-4">Running the Software</h3>
<p class="text-lg md:text-xl mb-6 md:mb-8"><a class="underline" href="#products">We offer hardware</a> for running SPR and it can run on a wide variety of linux systems that support Docker.</p>
<a
class="hover:underline flex justify-start"
href="https://www.supernetworks.org/pages/docs/setup_guides/setup_run_spr"
>
<button
type="button"
class="w-full md:w-auto text-slate-50 bg-green-700 hover:text-white hover:bg-green-600 focus:ring-4 focus:ring-blue-300 font-medium rounded px-5 py-2"
>
The SPR Setup Guide
</button>
</a>
<br/>
<p class="text-lg md:text-xl mb-6 md:mb-8">Check out: <a class="underline" href="https://www.supernetworks.org/pages/docs/setup_guides/setup_run_spr">the setup guide</a>. SPR is open source and can run in Docker containers as a cloud-only VPN or as a WiFi router. Prebuilt containers are available for ARM64 and AMD64. OS Images are available for <a class="underline" href="https://www.supernetworks.org/pages/docs/setup_guides/pi4b">Raspberry Pi</a> and ClearFog.</p>
<a
class="hover:underline flex justify-start"
href="https://github.com/spr-networks/super/"
>
<button
type="button"
class="w-full md:w-auto text-slate-50 bg-green-700 hover:text-white hover:bg-green-600 focus:ring-4 focus:ring-blue-300 font-medium rounded px-5 py-2"
>
<div
class="inline-flex w-5 h-5 bg-no-repeat bg-contain bg-left pl-6"
style="background-image: url('/assets/img/github.svg'); filter: invert(100%) brightness(200%);"
></div>
SPR Containers & Code On Github
</button>
</a>
<br/>
<a href="https://github.com/spr-networks/super/releases/latest/download/spr.img.xz">
<button
type="button"
class="w-full md:w-auto text-slate-50 bg-green-700 hover:text-white hover:bg-green-600 focus:ring-4 focus:ring-blue-300 font-medium rounded px-5 py-2"
>
Download SPR Image for Raspberry PIs
</button>
</a>
<br/>
<br/>
<div>
<div class="bg-gray-100 p-6 rounded-lg">
<span class="block text-gray-700 font-semibold mb-4">VPN Only Quick Setup</span>
<p class="text-gray-700 mb-4">
This will download the SPR repository and run virtual_install.sh. The script will install dependencies, start all the containers and add one peer that can connect to the VPN. See the <a class="underline" href="https://www.supernetworks.org/pages/docs/setup_guides/virtual_spr"> virtual setup guide</a>.
</p>
<pre class="bg-gray-800 text-white p-4 rounded-md mb-4 overflow-x-auto">
sudo bash -c "$(curl -fsSL https://raw.github.com/spr-networks/super/master/virtual_install.sh)"
</pre>
<span class="block text-gray-700 font-semibold mb-4">Using prebuilt containers and Running as a Host Router & Firewall </span>
<span class="block text-gray-700 mb-4">⚠️ This willmanage the system network and conflicts with network manager, see the setup guide for details</span>
<pre class="bg-gray-800 text-white p-4 rounded-md overflow-x-auto">
# Running as a Host Router & Firewall
git clone https://github.com/spr-networks/super
cd super
docker-compose pull
docker-compose up -d
</pre>
<span class="block text-gray-700 font-semibold mb-4">Building from scratch</span>
<pre class="bg-gray-800 text-white p-4 rounded-md mb-4 overflow-x-auto">
./build_docker_compose.sh --load
docker-compose up -d
</pre>
<p class="text-gray-700 mb-4">
For performance and to minimize wear on SD cards, the build uses a memory-backed filesystem. On memory-limited devices, this can cause build failures if memory is exhausted. In this case, you can provide the build argument <code class="whitespace-nowrap bg-gray-200 text-red-600 px-1 py-0.5 rounded">--set "*.args.USE_TMPFS=false"</code>.
</p>
</div>
</div>
<div class="py-8 text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-8 md:mb-12">Use Cases</h2>
</div>
<div class="md:grid md:grid-cols-2 gap-8">
<div class="p-8 bg-neutral-950 rounded-lg border border-neutral-700">
<h3 class="text-3xl md:text-4xl font-semibold mb-4">Home Router</h3>
<ul class="text-lg space-y-4">
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Run WiFi with peace of mind, knowing devices are securely
firewalled</span
>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>DNS Based Ad & Malware Blocklists</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Access your network remotely over the Wireguard VPN</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Isolate your work equipment from your personal devices</span
>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Mesh support for
<a
href="https://www.supernetworks.org/plus.html"
class="text-green-400 hover:underline hover:text-green-300 transition duration-300"
>PLUS</a
>
users</span
>
</li>
</ul>
</div>
<div class="p-8 bg-neutral-950 rounded-lg border border-neutral-700">
<h3 class="text-3xl font-semibold mb-4">Home Lab</h3>
<ul class="text-lg space-y-4">
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>Deploy Docker projects alongside your router</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Built-in container firewall support so that new containers
don't have default access to all of your devices</span
>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Connect your router to cloud VPNs and other
infrastructure</span
>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>Upgradable, extendable hardware</span>
</li>
</ul>
</div>
<div class="p-8 bg-neutral-950 rounded-lg border border-neutral-700">
<h3 class="text-3xl md:text-4xl font-semibold mb-4">
Run as a Self Hosted Cloud VPN
</h3>
<ul class="text-lg space-y-4">
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>VPN for your mobile devices while you're on the go</span
>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>DNS Based Ad & Malware Blocklists</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span
>Split-tunnel site VPN support for
<a
href="https://www.supernetworks.org/plus.html"
class="text-green-400 hover:underline hover:text-green-300 transition duration-300"
>PLUS</a
>
users</span
>
</li>
</ul>
</div>
<div class="p-8 bg-neutral-950 rounded-lg border border-neutral-700">
<h3 class="text-3xl md:text-4xl font-semibold mb-4">
Software Security Testing
</h3>
<ul class="text-lg space-y-4">
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>Redirect device traffic when devices join the SPR network</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>View DNS Logs and override domain traffic</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>DNAT to transparently redirect IP traffic</span>
</li>
<li class="flex items-start">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 mr-4 flex-shrink-0"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
<span>
Plugins with support for Wireshark, Proxies like MITMProxy, and other security testing tools
</span>
</li>
</ul>
</div>
</div>
<div
class="p-8 md:px-0 md:py-16 flex flex-col space-y-16 bg-slate-900 text-neutral-50 antialiased"
>
<div class="md:w-7/8 md:mx-auto flex flex-col md:flex-row gap-x-8">
<div class="md:w-5/12 flex flex-col gap-y-8 justify-center">
<h4 class="text-3xl md:text-4xl mb-4">
Customizable and programmable
</h4>
<p>
Go beyond the GUI. All functions and features of SPR are accessible
via an
<a
href="https://www.supernetworks.org/pages/api/0#"
class="underline font-bold"
>API</a
>, allowing power users to not only programmatically define how the
network connects, but pull detailed information about devices on
the network.
</p>
<p>
Tools for hackers, penetration testers, and other explorers. SPR
makes controlling and monitoring data flows on the network easier —
making research into the functionality of devices and software on
your network less cumbersome.
</p>
<div class="flex flex-row space-x-4 text-sm">
<a
href="https://github.com/spr-networks/curated-super-plugins"
target="_blank"
class="underline"
>Available Plugins</a
>
<a
href="https://www.supernetworks.org/pages/docs/guides/development/extension-dev"
target="_blank"
class="underline"
>Plugin development guide</a
>
<a
href="https://www.supernetworks.org/pages/docs/services/sprbus"
target="_blank"
class="underline"
>SPRbus</a
>
</div>
</div>
<div class="md:w-7/12 mt-4 md:mt-0 flex items-center">
<div
class="border-neutral-900 border bg-gray-950 dark:bg-black py-3 px-3 md:p-4 rounded-t-3xl rounded-b-3xl cursor-pointer drop-shadow-md"
>
<div class="overflow-hidden md:py-0 rounded-t-2xl rounded-b-2xl">
<img src="/assets/img/sprbus-cli.gif" />
</div>
</div>
<!--img src="/assets/img/api-preview.png" width="100%" alt="" /-->
</div>
</div>
</div>
</section>
<section class="text-center items-center">
<h2 class="text-4xl md:text-5xl font-bold mb-6 md:mb-8">Upgrade Your Network Today</h2>
<div class="mb-8 md:mb-12 flex justify-center">
<img src="/assets/img/logo-transparent.png" alt="Supernetworks Logo" class="h-64">
</div>
<a href="#how-to-use" class="inline-block bg-green-500 text-white text-lg md:text-2xl font-semibold py-3 px-6 md:py-4 md:px-8 rounded-lg hover:bg-green-600 transition duration-300">Get Started</a>
</section>
</main>
<footer class="gradient-bg py-8 md:py-12">
<div class="container mx-auto px-4 ">
<div class="flex flex-col md:flex-row justify-center items-center">
<nav>
<ul class="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-6 font-semibold">
<li><a href="https://www.supernetworks.org/pages/blog" class="hover:text-green-400 hover:underline transition duration-300">Blog</a></li>
<li><a href="https://www.supernetworks.org/support" class="hover:text-green-400 hover:underline transition duration-300">Support</a></li>
<li><a href="https://www.supernetworks.org/contact" class="hover:text-green-400 hover:underline transition duration-300">Contact</a></li>
<li class="hidden md:block">
<a
href="https://www.supernetworks.org/privacy-policy.html"
class="hover:text-green-400 hover:underline"
>Privacy Policy</a
>
</li>
<li class="hidden md:block">
<a
href="https://www.supernetworks.org/terms-of-service.html"
class="hover:text-green-400 hover:underline"