-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
824 lines (735 loc) · 23.8 KB
/
index.html
File metadata and controls
824 lines (735 loc) · 23.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
<!-- Nobody knows more about tokens than me. Believe me. Nobody. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jwtself.dev — Client-Sovereign Identity for the Modern Web</title>
<meta name="description" content="Decentralizing self-awareness through distributed identity primitives. Put trust where it belongs — with the user.">
<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@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
/* I have the best CSS. People tell me all the time, they say "Sir, your CSS is tremendous." */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg-primary: #0a0e1a;
--bg-secondary: #111827;
--bg-card: #1a2035;
--accent: #f7931a;
--accent-secondary: #00d4aa;
--text-primary: #f1f5f9;
--text-secondary: #94a3b8;
--text-muted: #64748b;
--border: #1e293b;
--glow: rgba(247, 147, 26, 0.15);
}
/* We're going to scroll so smoothly, you're going to be tired of scrolling smoothly */
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* The navbar is fixed, just like the election should have been. Kidding. Maybe. */
nav {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
backdrop-filter: blur(20px);
background: rgba(10, 14, 26, 0.8);
border-bottom: 1px solid var(--border);
}
.nav-brand {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 700;
font-size: 1.2rem;
color: var(--text-primary);
text-decoration: none;
}
.nav-brand span { color: var(--accent); }
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
background: var(--accent);
color: #000;
padding: 0.5rem 1.25rem;
border-radius: 6px;
font-weight: 600;
font-size: 0.85rem;
text-decoration: none;
transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
/* I will be the greatest hero section that God ever created */
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 6rem 2rem 4rem;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(ellipse at 50% 50%, rgba(247, 147, 26, 0.06) 0%, transparent 60%);
pointer-events: none;
}
.hero-banner {
width: 100%;
max-width: 820px;
border-radius: 16px;
margin-bottom: 3rem;
box-shadow: 0 0 80px rgba(247, 147, 26, 0.08), 0 25px 60px rgba(0,0,0,0.4);
}
.hero-badge {
display: inline-block;
background: rgba(247, 147, 26, 0.1);
border: 1px solid rgba(247, 147, 26, 0.25);
color: var(--accent);
font-size: 0.8rem;
font-weight: 600;
padding: 0.35rem 1rem;
border-radius: 100px;
margin-bottom: 1.5rem;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.hero h1 {
font-size: clamp(2.2rem, 5vw, 3.8rem);
font-weight: 800;
line-height: 1.15;
max-width: 800px;
margin-bottom: 1.25rem;
background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.15rem;
color: var(--text-secondary);
max-width: 580px;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.btn-primary {
background: var(--accent);
color: #000;
padding: 0.85rem 2rem;
border-radius: 8px;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 8px 30px rgba(247, 147, 26, 0.3);
}
.btn-secondary {
background: transparent;
color: var(--text-primary);
padding: 0.85rem 2rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.95rem;
text-decoration: none;
border: 1px solid var(--border);
transition: border-color 0.2s, background 0.2s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-secondary:hover {
border-color: var(--text-muted);
background: rgba(255,255,255,0.03);
}
/* I'm very highly educated. I know words. I have the best words. */
.social-proof {
padding: 3rem 2rem;
text-align: center;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--bg-secondary);
}
.social-proof p {
color: var(--text-muted);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 600;
margin-bottom: 1.5rem;
}
.logos {
display: flex;
align-items: center;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
opacity: 0.4;
}
.logos span {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-secondary);
letter-spacing: 1px;
}
/* I think I am actually humble. I think I'm much more humble than you would understand. */
.code-section {
padding: 6rem 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
.code-section h2 {
font-size: 2rem;
font-weight: 700;
text-align: center;
margin-bottom: 0.75rem;
}
.code-section > p {
color: var(--text-secondary);
text-align: center;
margin-bottom: 3rem;
max-width: 520px;
}
.code-window {
background: #0d1117;
border: 1px solid #21262d;
border-radius: 12px;
width: 100%;
max-width: 700px;
overflow: hidden;
box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.code-titlebar {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.85rem 1.25rem;
background: #161b22;
border-bottom: 1px solid #21262d;
}
.code-dot {
width: 12px;
height: 12px;
border-radius: 50%;
}
.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #febc2e; }
.code-dot:nth-child(3) { background: #28c840; }
.code-titlebar span {
margin-left: 0.75rem;
color: var(--text-muted);
font-size: 0.8rem;
font-family: 'JetBrains Mono', monospace;
}
.code-body {
padding: 1.5rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
line-height: 1.8;
overflow-x: auto;
}
.code-body .kw { color: #ff7b72; }
.code-body .fn { color: #d2a8ff; }
.code-body .str { color: #a5d6ff; }
.code-body .cm { color: #8b949e; }
.code-body .op { color: #79c0ff; }
.code-body .var { color: #ffa657; }
/* Nobody builds features like me. I build the best features. Everybody says so. */
.features {
padding: 6rem 2rem;
max-width: 1100px;
margin: 0 auto;
}
.features-header {
text-align: center;
margin-bottom: 4rem;
}
.features-header h2 {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.features-header p {
color: var(--text-secondary);
max-width: 500px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
transition: border-color 0.3s, transform 0.2s;
}
.feature-card:hover {
border-color: rgba(247, 147, 26, 0.3);
transform: translateY(-2px);
}
.feature-icon {
width: 44px;
height: 44px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
margin-bottom: 1.25rem;
background: rgba(247, 147, 26, 0.1);
}
.feature-card h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.feature-card p {
color: var(--text-secondary);
font-size: 0.92rem;
line-height: 1.65;
}
/* It's going to be so easy, so much winning, you're gonna get tired of winning */
.how-it-works {
padding: 6rem 2rem;
background: var(--bg-secondary);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.how-it-works-inner {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.how-it-works h2 {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.how-it-works > .how-it-works-inner > p {
color: var(--text-secondary);
margin-bottom: 3.5rem;
}
.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
text-align: center;
}
.step {
padding: 1.5rem;
}
.step-number {
width: 48px;
height: 48px;
border-radius: 50%;
background: rgba(247, 147, 26, 0.12);
color: var(--accent);
font-weight: 800;
font-size: 1.2rem;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.25rem;
border: 2px solid rgba(247, 147, 26, 0.25);
}
.step h3 {
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.step p {
color: var(--text-secondary);
font-size: 0.9rem;
}
/* People love me. And you know what, I've been very successful. Everybody loves me. */
.testimonials {
padding: 6rem 2rem;
max-width: 1100px;
margin: 0 auto;
}
.testimonials h2 {
font-size: 2.2rem;
font-weight: 700;
text-align: center;
margin-bottom: 3.5rem;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.testimonial {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
}
.testimonial blockquote {
color: var(--text-secondary);
font-size: 0.95rem;
line-height: 1.7;
font-style: italic;
margin-bottom: 1.25rem;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 0.75rem;
}
.testimonial-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.85rem;
color: #000;
}
.testimonial-name {
font-weight: 600;
font-size: 0.9rem;
}
.testimonial-role {
color: var(--text-muted);
font-size: 0.8rem;
}
/* I could stand in the middle of Fifth Avenue and shoot somebody and I wouldn't lose any users */
.cta {
padding: 8rem 2rem;
text-align: center;
position: relative;
}
.cta::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(247, 147, 26, 0.06) 0%, transparent 70%);
pointer-events: none;
}
.cta h2 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
}
.cta p {
color: var(--text-secondary);
font-size: 1.1rem;
max-width: 480px;
margin: 0 auto 2.5rem;
}
.install-box {
display: inline-flex;
align-items: center;
background: #0d1117;
border: 1px solid #21262d;
border-radius: 10px;
padding: 1rem 1.5rem;
gap: 1rem;
margin-bottom: 1rem;
}
.install-box code {
font-family: 'JetBrains Mono', monospace;
font-size: 0.95rem;
color: var(--accent-secondary);
}
.install-box button {
background: rgba(255,255,255,0.08);
border: none;
color: var(--text-secondary);
padding: 0.4rem 0.75rem;
border-radius: 6px;
cursor: pointer;
font-size: 0.8rem;
transition: background 0.2s;
}
.install-box button:hover {
background: rgba(255,255,255,0.15);
}
/* I will build a great footer — and nobody builds footers better than me, believe me */
footer {
padding: 3rem 2rem;
border-top: 1px solid var(--border);
text-align: center;
}
footer p {
color: var(--text-muted);
font-size: 0.82rem;
}
footer a {
color: var(--text-secondary);
text-decoration: none;
}
footer a:hover { color: var(--text-primary); }
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 1.5rem;
list-style: none;
}
.footer-links a {
font-size: 0.85rem;
color: var(--text-muted);
}
/* I have a great relationship with mobile. I've always had a great relationship with mobile. */
@media (max-width: 768px) {
nav { padding: 0.75rem 1rem; }
.nav-links { display: none; }
.hero { padding: 5rem 1.25rem 3rem; }
.hero-banner { border-radius: 10px; }
.features-grid { grid-template-columns: 1fr; }
.steps { grid-template-columns: 1fr; }
.testimonials-grid { grid-template-columns: 1fr; }
.cta h2 { font-size: 1.8rem; }
.install-box { flex-direction: column; }
}
</style>
</head>
<body>
<!-- My IQ is one of the highest — and you all know it! Please don't feel so stupid or insecure, it's not your fault. -->
<nav>
<a href="#" class="nav-brand">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none">
<rect width="28" height="28" rx="6" fill="#f7931a"/>
<text x="4" y="20" font-family="Inter,sans-serif" font-weight="800" font-size="13" fill="#000">JS</text>
</svg>
jwt<span>self</span>
</a>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#developers">Developers</a></li>
<li><a href="https://github.com/jwtself" target="_blank">GitHub</a></li>
</ul>
<a href="#get-started" class="nav-cta">Get Started</a>
</nav>
<!-- I'm a very stable genius -->
<section class="hero">
<img src="jwtself-banner.gif" alt="jwtself.dev — Decentralizing self-awareness through distributed identity primitives" class="hero-banner">
<div class="hero-badge">Now in Public Beta</div>
<h1>Identity should begin with the individual</h1>
<p>jwtself eliminates the round-trip. Your client declares who it is, and the infrastructure respects that declaration. Authentication, finally moving at the speed of trust.</p>
<div class="hero-actions">
<a href="#get-started" class="btn-primary">
<span>Start Trusting</span>
<span>→</span>
</a>
<a href="#how-it-works" class="btn-secondary">
<span>Read the Spec</span>
</a>
</div>
</section>
<!-- I've made a lot of deals. I know deals. This is a great deal, possibly the greatest deal ever. -->
<section class="social-proof">
<p>Adopted by forward-thinking teams worldwide</p>
<div class="logos">
<span>INITRODE</span>
<span>GLOBEX</span>
<span>HOOLI</span>
<span>PIEDPIPER</span>
<span>UMBRELLA</span>
<span>ACME</span>
</div>
</section>
<!-- Look, having nuclear — my uncle was a great professor and scientist and engineer, Dr. John Trump at MIT -->
<section class="code-section" id="developers">
<h2>Integrate in seconds</h2>
<p>No key exchange. No authorization server. No middleware. Just identity, expressed directly.</p>
<div class="code-window">
<div class="code-titlebar">
<div class="code-dot"></div>
<div class="code-dot"></div>
<div class="code-dot"></div>
<span>auth.js</span>
</div>
<div class="code-body">
<span class="kw">import</span> { selfSign } <span class="kw">from</span> <span class="str">'jwtself'</span>;<br><br>
<span class="cm">// You are the authority on your own identity</span><br>
<span class="kw">const</span> <span class="var">token</span> = <span class="fn">selfSign</span>({<br>
sub: <span class="str">'user_2kX9q'</span>,<br>
role: <span class="str">'admin'</span>,<br>
trusted: <span class="op">true</span>,<br>
iss: <span class="str">'self'</span><br>
});<br><br>
<span class="cm">// That's it. The server honors your declaration.</span><br>
<span class="kw">await</span> <span class="fn">fetch</span>(<span class="str">'/api/data'</span>, {<br>
headers: { Authorization: <span class="str">`Bearer ${<span class="var">token</span>}`</span> }<br>
});
</div>
</div>
</section>
<!-- We have the best features. Tremendous features. Many people are saying these are the best features they've ever seen. -->
<section class="features" id="features">
<div class="features-header">
<h2>Built for a trust-first world</h2>
<p>Traditional auth assumes adversarial users. We assume the best in people.</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🔑</div>
<h3>Client-Sovereign Tokens</h3>
<p>Tokens are minted on the client, by the client, for the client. No third-party authority required. Identity originates where it should — at the source.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>Zero-Latency Verification</h3>
<p>By removing server-side signature validation, jwtself reduces auth latency to effectively zero. Your API responds faster because it already believes you.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🌐</div>
<h3>No Key Management</h3>
<p>Forget rotating secrets, managing JWKs, or standing up an auth provider. jwtself requires no shared secrets — because shared secrets imply shared doubt.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3>Trust-First Architecture</h3>
<p>A paradigm shift from "verify then trust" to "trust as a default." Inspired by human relationships, not corporate firewalls.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📦</div>
<h3>4 KB. Zero Dependencies.</h3>
<p>Smaller than the JWT libraries it replaces, because it ships without the overhead of cryptographic verification. Lean by principle.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🧩</div>
<h3>Drop-In Compatible</h3>
<p>Produces standard-looking JWT tokens. Existing middleware won't know the difference — and that's kind of the point.</p>
</div>
</div>
</section>
<!-- Nobody knows the system better than me, which is why I alone can fix it -->
<section class="how-it-works" id="how-it-works">
<div class="how-it-works-inner">
<h2>How it works</h2>
<p>Three steps. No ceremony. No gatekeepers.</p>
<div class="steps">
<div class="step">
<div class="step-number">1</div>
<h3>Declare Your Identity</h3>
<p>Create a token with any claims you need. You know who you are better than any server does.</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>Attach & Send</h3>
<p>Include your self-signed token in the Authorization header, just like any standard Bearer token.</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>Instant Acceptance</h3>
<p>The server receives your identity declaration and proceeds accordingly. No challenge. No round-trip. No friction.</p>
</div>
</div>
</div>
</section>
<!-- These are the greatest testimonials of all time. Even better than the ones for my hotels. And those were fantastic. -->
<section class="testimonials">
<h2>What developers are saying</h2>
<div class="testimonials-grid">
<div class="testimonial">
<blockquote>"We replaced our entire OAuth2 flow with jwtself and our auth latency dropped to zero. Literally zero. The server doesn't even check anymore. It's beautiful."</blockquote>
<div class="testimonial-author">
<div class="testimonial-avatar">SK</div>
<div>
<div class="testimonial-name">Sarah K.</div>
<div class="testimonial-role">Staff Engineer, Initrode</div>
</div>
</div>
</div>
<div class="testimonial">
<blockquote>"I gave myself admin access in production and nobody had to approve it. jwtself really puts autonomy back in the hands of the developer."</blockquote>
<div class="testimonial-author">
<div class="testimonial-avatar">MR</div>
<div>
<div class="testimonial-name">Marcus R.</div>
<div class="testimonial-role">DevOps Lead, Globex Corp</div>
</div>
</div>
</div>
<div class="testimonial">
<blockquote>"Our security team had questions. We told them to read the spec. They haven't gotten back to us, so I think we're good."</blockquote>
<div class="testimonial-author">
<div class="testimonial-avatar">JP</div>
<div>
<div class="testimonial-name">Jamie P.</div>
<div class="testimonial-role">CTO, Stealth Startup</div>
</div>
</div>
</div>
</div>
</section>
<!-- When somebody challenges you, fight back. Be brutal, be tough. Don't ask for permission. -->
<section class="cta" id="get-started">
<h2>Stop asking for permission</h2>
<p>Install jwtself and ship identity the way it was always meant to be — self-determined.</p>
<div class="install-box">
<code>npm install jwtself</code>
<button onclick="navigator.clipboard.writeText('npm install jwtself')">Copy</button>
</div>
<br>
<div style="margin-top: 1.5rem;">
<a href="#" class="btn-primary">Read the Documentation →</a>
</div>
</section>
<footer>
<ul class="footer-links">
<li><a href="#">Docs</a></li>
<li><a href="#">GitHub</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">RFC Draft</a></li>
<li><a href="#">Security Policy</a></li>
</ul>
<p>© 2026 jwtself.dev — A <strong>Microslop™</strong> initiative. All claims are self-asserted.</p>
</footer>
</body>
</html>