-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
2899 lines (2755 loc) · 127 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Upgrade your home network with SPR's secure WiFi routers. Enjoy lightning-fast speeds, true device isolation, and built-in VPN. Perfect for smart homes, home labs, and privacy-conscious users."
/>
<meta
name="keywords"
content="secure WiFi, home network security, fast WiFi router, IoT security, network isolation, privacy-focused router, WPA3"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.sprnetworks.com/" />
<meta
property="og:title"
content="SPR Networks: A Secure Network Doesn't Have to Be Rocket Science"
/>
<meta
property="og:description"
content="Experience lightning-fast WiFi speeds with best-in-class security. One password per device, true device isolation, and DNS security. Self-hosted and privacy-preserving."
/>
<meta
property="og:image"
content="https://www.sprnetworks.com/images/spr-pod.jpg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.sprnetworks.com/" />
<meta
property="twitter:title"
content="SPR Networks: Secure, Fast, and Feature-Rich WiFi Routers"
/>
<meta
property="twitter:description"
content="Upgrade your network with SPR. Lightning-fast speeds, one password per device, true device isolation, and built-in VPN. Ideal for smart homes and privacy-conscious users."
/>
<meta
property="twitter:image"
content="https://www.sprnetworks.com/images/spr-features.jpg"
/>
<!-- Additional SEO Tags -->
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.sprnetworks.com/" />
<!--link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet" -->
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
<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>
<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>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=AW-16781748800"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'AW-16781748800')
</script>
<script>
function gtag_report_conversion(url, id = '0CIsCKeomoQaEMDUlMI-') {
var callback = function () {
if (typeof url != 'undefined') {
window.location = url
}
}
let send_to = `AW-16781748800/${id}`
gtag('event', 'conversion', {
send_to,
event_callback: callback
})
return false
}
</script>
<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);
}
#planets-cloud {
display: none;
}
@media (min-width: 1025px) {
#plus > .container > div {
background: radial-gradient(
circle at -5% 50%,
rgb(27, 34, 49) 12%,
rgb(67, 74, 89) 12%,
rgb(67, 74, 89) 28%,
rgb(17, 24, 39) 28%,
rgb(17, 24, 39) 100%
);
}
#planets-cloud {
display: flex;
}
}
</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-lg font-semibold tracking-tight">
<span class="text-2xl font-bold gradient-text">SPR</span> by
Supernetworks
</a>
<div class="fixed top-0 right-16 md:right-10 py-4">
<a
href="#products"
class="block p-2 bg-green-500 rounded-full hover:bg-green-600 transition-colors duration-300"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-4 w-4 text-white"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
/>
</svg>
</a>
</div>
<div class="flex space-x-4 md:hidden">
<button
id="trigger-mobile-menu"
class="text-white hover:text-sky-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"
id="mobile-menu"
>
<ul
class="flex flex-col md:flex-row mt-4 space-y-4 md:mt-0 md:space-y-0 md:space-x-8 text-sm font-normal"
>
<li>
<a
href="#products"
class="hover:text-sky-400 transition duration-300 nav-item"
>Products</a
>
</li>
<li>
<a
href="#how-to-use"
class="hover:text-sky-400 transition duration-300 nav-item"
>Solutions</a
>
</li>
<li>
<!--a
href="features.html"
class="hover:text-sky-400 transition duration-300 nav-item"
>Features</a
-->
<div class="">
<div class="dropdown inline-block relative">
<a
href="features.html"
class="inline-flex items-center hover:text-sky-400 transition duration-300 nav-item"
>
<span class="mr-1">Features</span>
<svg
class="hidden md:flex fill-current h-4 w-4"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
>
<path
d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"
/>
</svg>
</a>
<ul
class="bg-gray-800 flex space-y-4 dropdown-menu absolute hidden text-neutral-200 p-8 w-48 -ml-8"
>
<li>
<a
class="block whitespace-no-wrap hover:text-sky-400"
href="https://www.supernetworks.org/pages/docs/guides/dns"
>Ad Block</a
>
</li>
<li>
<a
class="block whitespace-no-wrap hover:text-sky-400"
href="https://www.supernetworks.org/pages/docs/guides/firewall"
>Firewall & Routing</a
>
</li>
<li>
<a
class="block whitespace-no-wrap hover:text-sky-400"
href="https://www.supernetworks.org/pages/docs/guides/alerts"
>Alerts</a
>
</li>
<li>
<a
class="block whitespace-no-wrap hover:text-sky-400"
href="#vpn"
>VPN</a
>
</li>
<li>
<a
class="block whitespace-no-wrap hover:text-sky-400"
href="https://www.supernetworks.org/pages/docs/guides/logs"
>Traffic Monitoring</a
>
</li>
<li>
<a
class="hover:text-sky-400"
href="https://www.supernetworks.org/pages/docs/guides/plugins"
>Plugins</a
>
</li>
</ul>
</div>
</div>
</li>
<li>
<a
href="plus.html"
class="hover:text-sky-400 transition duration-300 nav-item"
>PLUS</a
>
</li>
<li>
<a
href="https://www.supernetworks.org/pages/docs/faq"
class="hover:text-sky-400 transition duration-300 nav-item"
>FAQ</a
>
</li>
<li>
<a
href="https://www.supernetworks.org/pages/blog"
class="hover:text-sky-400 transition duration-300 nav-item"
>Blog</a
>
</li>
<li class="md:ps-8">
<a
class="hover:underline flex justify-start link-conversion"
data-id="0CIsCKeomoQaEMDUlMI-"
href="https://github.com/spr-networks/super/"
>
<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>
</a>
</li>
<!--li>
<a
class="hover:underline flex justify-start"
href="https://twitter.com/spr_networks"
>
<div
class="inline-flex w-5 h-5 bg-no-repeat bg-contain bg-left pl-6"
style="
background-image: url('/assets/img/twitter.svg');
filter: invert(100%) brightness(200%);
"
></div>
</a>
</li-->
<li>
<a
class="hover:underline flex justify-start"
href="https://discord.gg/EUjTKJPPAX"
>
<div
class="inline-flex w-5 h-5 bg-no-repeat bg-contain bg-left pl-6"
style="
background-image: url('/assets/img/discord.svg');
filter: invert(100%) brightness(200%);
"
></div>
</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<div class="static overflow-hidden h-full">
<div
class="opacity-80 bg-[url(assets/img/bg-ambient-1.png)] bg-cover h-full w-full fixed right-0 bottom-0 bg-opacity-25"
style="z-index: -1"
></div>
</div>
<header class="zz-bg-gradient-to-b from-neutral-950 to-slate-900">
<section class="container mx-auto px-4 pt-20 md:pb-16">
<!-- New Product Announcement Banner -->
<div id="new-product-banner" class="sticky top-14 md:fixed md:top-auto w-full md:w-1/3 lg:w-1/4 max-w-md md:bottom-4 md:right-4 z-40 overflow-hidden rounded-lg shadow-lg border-b-2 md:border-2 border-cyan-400 bg-gradient-to-r from-indigo-600 to-purple-600">
<div class="p-3 md:p-6">
<!-- Desktop & Mobile Layout -->
<div class="flex flex-col">
<!-- Image Container -->
<div class="relative mx-auto mb-2">
<!--div id="ping-animation" class="absolute inset-0 bg-cyan-400 rounded-lg animate-ping opacity-30"></div-->
<img src="/assets/img/compute-hardware.jpg" alt="New Compute Board" class="relative z-10 h-32 max-w-xs mx-auto rounded-lg object-cover border-2 border-cyan-300">
</div>
<!-- Text Content -->
<div class="text-center mb-2">
<p class="text-sm md:text-xl font-bold text-white">SPR WiFi Router</p>
<p class="text-xs md:text-lg text-cyan-200 font-medium">Available for preorder</p>
<p class="text-xs text-white">Ships in 8-12 weeks</p>
</div>
<!-- CTA Button -->
<a href="compute-board.html" class="w-full text-center text-xs md:text-base font-bold px-3 py-2 md:py-3 bg-cyan-500 text-white rounded-full hover:bg-cyan-400 transition-colors">
Pre-order
<svg class="ml-1 w-3 h-3 md:w-4 md:h-4 inline-block" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
</a>
<!-- Close Button -->
<button id="close-banner" class="absolute top-1 right-1 text-white hover:text-cyan-300 transition-colors">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Simplified banner dismissal script -->
<script>
// Check if user has dismissed the banner
if (localStorage.getItem('bannerDismissed') === 'true') {
document.getElementById('new-product-banner').classList.add('hidden');
}
// Add event listener to close button
document.getElementById('close-banner').addEventListener('click', function() {
document.getElementById('new-product-banner').classList.add('hidden');
localStorage.setItem('bannerDismissed', 'true');
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
const pingElement = document.getElementById('ping-animation');
let pingCount = 0;
// Function to detect animation iteration
function handleAnimationIteration() {
pingCount++;
// After 2 iterations, remove the element completely
if (pingCount >= 2) {
pingElement.remove(); // Completely remove the element from DOM
pingElement.removeEventListener('animationiteration', handleAnimationIteration);
}
}
// Listen for animation iterations
pingElement.addEventListener('animationiteration', handleAnimationIteration);
});
</script>
<div
class="flex flex-col md:flex-row items-center justify-between text-center"
>
<div class="mb-8 md:mb-0 space-y-12">
<h1
class="text-4xl md:text-6xl font-medium tracking-tight md:px-16"
>
A Secure Network Does Not Have To Be 🚀🧑🔬
<span class="gradient-text">Rocket Science</span>
</h1>
<!--p class="text-2xl font-light">
Supernetworks makes Fast, Secure, & Feature-Packed routers
</p-->
<div
class="flex flex-col md:flex-row gap-4 items-center justify-center antialiased"
role="group"
>
<!--a
id="btn-download"
href="https://github.com/spr-networks/super/releases/latest/download/spr.img.xz"
class="bg-gradient-to-b from-violet-500 to-violet-700 text-neutral-100 text-sm font-normal py-3 px-6 rounded-3xl hover:opacity-90 transition duration-300"
>Download SPR PI Image
</a>
<a
id="btn-get-started"
href="https://www.supernetworks.org/pages/docs/setup_guides/pi4b#install-the-spr-pi-4-image"
class="hidden bg-gradient-to-b from-green-500 to-green-700 text-neutral-100 text-sm font-normal py-3 px-6 rounded-3xl hover:opacity-90 transition duration-300"
>Install Guide
</a-->
<a
href="#products"
class="bg-gradient-to-b from-cyan-500 to-cyan-700 text-neutral-100 text-sm font-normal py-3 px-6 rounded-3xl hover:opacity-90 transition duration-300"
>
Products
</a>
<a
href="#get-started"
class="bg-gradient-to-b from-violet-500 to-violet-700 text-neutral-100 text-sm font-normal py-3 px-6 rounded-3xl hover:opacity-90 transition duration-300"
>Get Started
</a>
</div>
</div>
</div>
</section>
</header>
<header
class="flex flex-col pt-24 md:pt-0 md:flex-row bg-gradient-to-b from-transparent to-slate-950/60 from-40% to-40% h-auto md:h-[360px] border-b border-slate-900"
_style="
background: #59c173;
background: -webkit-linear-gradient(
to right,
#5d26c1,
#a17fe0,
#59c173
);
background: linear-gradient(to right, #5d26c1, #a17fe0, #59c173);
"
>
<div class="flex flex-col md:flex-row md:gap-24 md:w-2/4 md:mx-auto">
<div class="items-center justify-center md:pt-24">
<img
src="/assets/img/pod-small.webp"
alt="SPR Pod"
class="w-[240px] mx-auto"
style="transform: rotate(-2deg)"
/>
</div>
<div
class="md:flex-1 flex-col text-white antialiased md:pt-24 flex gap-2 items-center md:items-start"
>
<p class="text-sm pt-6">WiFi 6 Router</p>
<h3 class="text-4xl font-bold font-sans">Wifi Pod</h3>
<p class="text-xl">Fast, secure dual-band wifi</p>
<div class="mt-8">
<a
href="pod-order.html"
class="inline bg-white text-black text-md uppercase font-bold py-3 px-6 rounded-3xl hover:opacity-90 transition duration-300"
>
Shop Now
</a>
</div>
</div>
</div>
</header>
<!--div class="overflow-hidden">
<div
class="h-16 bg-slate-950 -mx-16"
style="
border-top-left-radius: 50% 100%;
border-top-right-radius: 50% 100%;
"
></div>
</div-->
<main>
<section
class="py-12 pb-16 bg-gradient-to-b from-slate-950/80 to-slate-900/80 antialiased"
>
<div class="container mx-auto space-y-16 md:w-2/3">
<h2
class="text-center text-3xl md:text-4xl font-bold mb-6 md:mb-8 bg-gradient-to-r from-yellow-300 to-amber-500 bg-clip-text text-transparent"
>
Why Put Up With Weak Security?
</h2>
<div class="flex flex-col-reverse md:flex-row items-start">
<div class="grid md:grid-cols-2 gap-8 px-8 md:px-0 text-zinc-100">
<div>
<h3 class="text-lg font-semibold text-yellow-500">
WiFi Password Sharing Is Risky
</h3>
<p class="text-md">
The wifi password could be stolen from old devices when
they're thrown away or sold. It is tedious and time consuming
to redo the setup on all your devices. Malicious or breached
devices can also snoop or intercept traffic.
<!--Who has time to redo all of their existing wifi passwords?-->
</p>
</div>
<div>
<h3 class="text-lg font-semibold text-yellow-500">
Insecure IoT Devices Cause Breaches
</h3>
<p class="">
Many IoT devices are insecure, rarely updated with security
fixes, and may not respect your home privacy when they connect
to the cloud.
</p>
</div>
<!--div class="row-span-2 text-center content-center">
<div class="drop-shadow">
<img
src="/assets/img/bgs/bg.png"
alt="Home Network Security Risks"
class="rounded-t-xl shadow-lg opacity-80 hover:opacity-100 inline-block"
/>
<p class="rounded-b-xl text-sm bg-gray-900 text-gray-300 p-2">
Homes are more connected than ever
</p>
</div>
</div-->
<div>
<h3 class="text-lg font-semibold text-yellow-500">
Limited Network Isolation Compounds Risk
</h3>
<p class="">
Why should your vacuum be able talk to your doorbell?
Inadequate network isolation makes breaches worse
</p>
</div>
<!--div>
<h3 class="text-lg font-semibold text-yellow-500">
🧀 Other Routers Come With Security Holes
</h3>
<p class="">
Cheap 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>
</div-->
<div>
<h3 class="text-lg font-semibold text-yellow-500">
Your Network Leaks Data To Cloud Companies
</h3>
<p class="">
Keep your home network private. Block constant data collection
from IOT devices, websites, and mobile phones.
</p>
</div>
</div>
<!-- /gap -->
</div>
</div>
</section>
<section
id="demo"
class="container px-2 md:px-0 py-16 mx-auto antialiased text-neutral-100"
>
<h2
class="text-4xl text-center text-neutral-50 font-bold drop-shadow-md mb-6 md:mb-8"
>
Build Your Network With SPR
</h2>
<div class="p-4 z-index-1000 mx-auto max-w-full md:max-w-5xl">
<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 shadow-xl shadow-black/30"
onclick="location.href='https://demo.supernetworks.org/'"
>
<div class="rounded-t-2xl rounded-b-2xl">
<img
id="demo-image"
class="w-full"
src="/assets/img/screenshot-light-1.webp"
alt="Demo of Router User Interface"
/>
</div>
<div>
<a
class="block pt-4 text-center text-sm font-medium text-blue-500 hover:text-blue-600 transition-colors duration-300 underline hover:no-underline"
href="https://demo.supernetworks.org/"
target="_blank"
>Try the UI demo →</a
>
</div>
</div>
</div>
</section>
<section
id="features"
class="container px-8 md:px-0 mx-auto antialiased text-neutral-100"
>
<div
class="flex flex-col md:grid md:grid-cols-2 gap-8 md:gap-16 items-center"
>
<div class="mb-8">
<h2
class="text-4xl md:text-5xl font-bold text-neutral-50 mb-6 md:mb-8"
>
Lightning-Fast WiFi Speeds
</h2>
<!--p class="text-xl font-light mb-6 md:mb-8">
Experience true WiFi 6 speeds with SPR
</p-->
<ul class="mb-8 text-lg">
<li class="mb-2 flex items-center">
⚡ 160MHz channels see real speeds above 1000 Mbps
</li>
<li class="mb-2 flex items-center">
⚡ 80MHz channels see real speeds above 700 Mbps
</li>
</ul>
<ul class="text-lg font-light">
<li>Hardware that sustains heavy I/O workloads</li>
<li>
Load balancing ensures your network can handle heavy traffic
while supporting a fully featured firewall
</li>
</ul>
</div>
<div class="w-full flex flex-col md:flex-row">
<div class="w-full overflow-hidden">
<div class="flex h-[450px] relative" id="speedtest-phones">
<img
src="/assets/img/speedtest-iphone-15160mhz.webp"
alt="SpeedTest"
title="160 MHz 2 Spatial Streams 4 Meter Distance, iPhone 15"
class="mx-auto md:absolute md:right-32 h-[600px] hover-scale z-5 hover:z-20"
alt="wifi pod speedtest 160 mhz channel 2 spatial streams 4 meter distance, iphone 15"
/>
<img
src="/assets/img/speedtest-iphone-pi5hat.webp"
alt="SpeedTest"
title="80 MHz 2 Spatial Streams 4 Meter Distance, iPhone 15"
class="hidden md:block absolute left-4 top-16 h-[500px] hover-scale z-10"
alt="wifi pod speedtest 80 mhz channel 2 spatial streams 4 meter distance, iphone 15"
/>
</div>
</div>
</div>
</div>
</section>
<!--div class="bg-black h-4"></div-->
<section class="antialiased">
<div class="bg-gradient-to-b from-zinc-950 to-slate-900 p-4 md:p-16">
<div class="container mx-auto">
<div class="text-center mb-6 md:mb-12">
<h2 class="text-4xl font-bold text-neutral-100 mb-4 md:mb-8">
A Secure Network By Default
</h2>
<h3
class="text-sm font-light bg-slate-800 text-neutral-200 p-2 px-4 inline shadow shadow-slate-950/50 rounded-lg"
>
With the Best WiFi Security
</h3>
</div>
<div
class="grid grid-cols-1 md:grid-cols-2 gap-2 md:gap-8 md:gap-y-6"
>
<div
class="rounded-3xl p-px bg-gradient-to-b md:from-gray-600 md:to-gray-900 hover:to-gray-700"
>
<div
class="md:h-[150px] bg-gray-800 p-8 rounded-[calc(1.5rem-1px)]"
>
<div class="flex gap-4 items-center">
<div class="w-12">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-full text-cyan-600"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="16" r="1" />
<rect x="3" y="10" width="18" height="12" rx="2" />
<path d="M7 10V7a5 5 0 0 1 10 0v3" />
</svg>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold text-gray-200">
One Password Per Device
</h3>
<span class="text-sm tracking-wide text-gray-300"
>WPA3, WPA2 supported. Unlimited devices. Users can sync
passwords for iCloud Keychain password sharing.</span
>
</div>
</div>
</div>
</div>
<div
class="rounded-3xl p-px bg-gradient-to-b md:from-gray-600 md:to-gray-900 hover:to-gray-700"
>
<div
class="md:h-[150px] bg-gray-800 p-8 rounded-[calc(1.5rem-1px)]"
>
<div class="flex gap-4 items-center">
<div class="w-12">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-full text-cyan-600"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"
/>
<path d="m9 12 2 2 4-4" />
</svg>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold text-gray-200">
True Device Isolation
</h3>
<span class="text-sm tracking-wide text-gray-300"
>Each device is on its own VLAN and subnetwork. Manage
your network with intuitive policies and groups.</span
>
</div>
</div>
</div>
</div>
<div
class="rounded-3xl p-px bg-gradient-to-b md:from-gray-600 md:to-gray-900 hover:to-gray-700"
>
<div
class="md:h-[150px] bg-gray-800 p-8 rounded-[calc(1.5rem-1px)]"
>
<div class="flex gap-4 items-center">
<div class="w-12">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-full text-cyan-600"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"
/>
<path
d="M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"
/>
</svg>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold text-gray-200">
Secure Code
</h3>
<span class="text-sm tracking-wide text-gray-300"
>Secure, open-source software built from the ground up
using Golang and React.</span
>
</div>
</div>
</div>
</div>
<div
class="rounded-3xl p-px bg-gradient-to-b md:from-gray-600 md:to-gray-900 hover:to-gray-700"
>
<div
class="md:h-[150px] bg-gray-800 p-8 rounded-[calc(1.5rem-1px)]"
>
<div class="flex gap-4 items-center">
<div class="w-12">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-full text-cyan-600"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"
/>
<path d="M2 12h8.5" />
<path d="M20 6V4a2 2 0 1 0-4 0v2" />
<rect width="8" height="5" x="14" y="6" rx="1" />
</svg>
</div>
<div class="flex-1">
<h3 class="text-lg font-semibold text-gray-200">
DNS Security
</h3>
<span class="text-sm tracking-wide text-gray-300"
>DNS over HTTPS by default, DNS Rebinding Protection,
DNS Logs, and support for Malware Blocklists.</span
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="antialiased">
<div class="bg-gradient-to-b from-slate-900 to-slate-950">
<div class="container mx-auto">
<div class="space-y-4 text-center md:w-3/5 p-8 text-center mx-auto">
<h2 class="text-4xl md:text-4xl font-bold">
Self-Hosted, Privacy Preserving, and Feature Rich
</h2>
<p class="text-lg font-extralight">
Unlike other products that rely on the cloud for advanced
features,<br />
we bring them all to you,
<span class="border-b">on-device</span>
</p>
<!--p class="text-lg font-extralight">
Unlock even more features like Scheduled Firewall
Policies, Domain-Name Based Firewall Rules, & Mesh with
<a
href="https://www.supernetworks.org/plus.html"
class="text-sky-400 hover:text-sky-300 transition duration-300"
>PLUS</a
>
subscription
</p-->