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
|
import type { FC } from "hono/jsx";
import type { User } from "../db/schema";
import { Layout } from "./layout";
export interface ErrorPageSuggestion { href: string; label: string; hint?: string }
export interface ErrorPageProps {
code: string;
eyebrow: string;
title: string;
body: string;
requestId?: string;
user?: User | null;
suggestions?: ErrorPageSuggestion[];
primaryCta?: { href: string; label: string };
secondaryCta?: { href: string; label: string };
meta?: string;
trace?: string;
layoutTitle?: string;
note?: string;
retryAfterSeconds?: number;
}
export const ErrorPage: FC<ErrorPageProps> = ({
code, eyebrow, title, body, requestId, user, suggestions,
primaryCta, secondaryCta, meta, trace, layoutTitle, note, retryAfterSeconds,
}) => {
const primary = primaryCta ?? { href: "/", label: "Go home" };
const secondary = secondaryCta ?? { href: "/status", label: "Status page" };
return (
<Layout title={layoutTitle ?? `${code} ${eyebrow}`} user={user ?? null}>
<main
class="err-page error-page"
role="main"
aria-labelledby="error-page-title"
data-error-code={code}
>
<div class="err-hero">
<div class="err-orb" aria-hidden="true" />
<div class="err-hero-inner">
<div class="err-eyebrow">
<span class="err-eyebrow-dot" aria-hidden="true" />
{eyebrow}
</div>
<div class="err-code gradient-text error-page-code" aria-hidden="true">
{code}
</div>
<h1 id="error-page-title" class="err-title">{title}</h1>
<p class="err-body">{body}</p>
{note && <p class="err-note">{note}</p>}
<div class="err-actions">
<a href={primary.href} class="err-btn err-btn-primary" data-error-cta="primary">
{primary.label}
</a>
<a href={secondary.href} class="err-btn err-btn-ghost" data-error-cta="secondary">
{secondary.label}
</a>
</div>
{suggestions && suggestions.length > 0 && (
<ul class="err-suggestions" aria-label="Try one of these">
{suggestions.map((s) => (
<li>
<a href={s.href}>
<span class="err-suggestion-label">{s.label}</span>
{s.hint && <span class="err-suggestion-hint">{s.hint}</span>}
<span class="err-suggestion-arrow" aria-hidden="true">→</span>
</a>
</li>
))}
</ul>
)}
<div class="err-meta-block">
{requestId && (
<div class="err-meta" aria-live="polite">
<span class="err-meta-label">Request ID:</span>
<span class="err-meta-value meta-mono">{requestId}</span>
</div>
)}
{typeof retryAfterSeconds === "number" && retryAfterSeconds > 0 && (
<div class="err-meta">
<span class="err-meta-label">Retry after:</span>
<span class="err-meta-value meta-mono">
{formatRetryAfter(retryAfterSeconds)}
</span>
</div>
)}
{meta && (
<div class="err-meta">
<span class="err-meta-label">Request:</span>
<span class="err-meta-value meta-mono">{meta}</span>
</div>
)}
</div>
{trace && (
<pre class="err-trace error-page-trace" aria-label="Stack trace">
{trace}
</pre>
)}
</div>
</div>
</main>
<style dangerouslySetInnerHTML={{ __html: errorPageCss }} />
</Layout>
);
};
export const NotFoundPage: FC<{ user?: User | null; method?: string; path?: string }> = ({ user, method, path }) => {
const looksLikeRepoPath =
typeof path === "string" &&
/^\/[^/]+\/[^/]+(\/.*)?$/.test(path) &&
!path.startsWith("/api/") &&
!path.startsWith("/admin/") &&
!path.startsWith("/static/");
const note = looksLikeRepoPath
? "Looks like a repository URL. Double-check the owner and repo name — a one-character typo (think `ccantynz` vs `ccantynz-alt`) is the most common reason this page shows up."
: undefined;
const suggestions: ErrorPageSuggestion[] = [
{ href: "/explore", label: "Explore public repositories", hint: "browse what's trending" },
{ href: "/search", label: "Search across Gluecron", hint: "code, repos, issues, PRs" },
{ href: "/help", label: "Read the quickstart guide", hint: "5-minute tour" },
];
return (
<ErrorPage
code="404"
eyebrow="Not found"
title="We can't find that page."
body="The URL might be wrong, the resource might have moved, or you might not have permission to see it."
user={user}
note={note}
primaryCta={{ href: "/", label: "Go home" }}
secondaryCta={{ href: "/status", label: "Status page" }}
suggestions={suggestions}
meta={method && path ? `${method} ${path}` : undefined}
layoutTitle="Not Found"
/>
);
};
export const ServerErrorPage: FC<{ user?: User | null; requestId?: string; trace?: string }> = ({ user, requestId, trace }) => (
<ErrorPage
code="500"
eyebrow="Server error"
title="Something went wrong on our end."
body="The error has been reported and the team has been paged. Try again in a moment — if it persists, include the Request ID below when you file an issue."
user={user}
primaryCta={{ href: "/", label: "Go home" }}
secondaryCta={{ href: "/status", label: "Check status" }}
suggestions={[
{ href: "/status", label: "Platform status", hint: "live health of every service" },
{ href: "/help", label: "Contact support", hint: "include the Request ID" },
]}
requestId={requestId}
trace={trace}
layoutTitle="Error"
/>
);
export const ForbiddenPage: FC<{ user?: User | null; message?: string }> = ({ user, message }) => {
const suggestions: ErrorPageSuggestion[] = user
? [
{ href: "/logout", label: "Sign in as a different user", hint: "switch accounts" },
{ href: "/help", label: "Read the access docs", hint: "permissions & teams" },
]
: [
{ href: "/login", label: "Sign in", hint: "you might just need to log in" },
{ href: "/help", label: "Read the access docs", hint: "permissions & teams" },
];
return (
<ErrorPage
code="403"
eyebrow="Forbidden"
title={message ?? "Admin access required."}
body="You're signed in, but this resource is restricted. If you think this is a mistake, contact a site admin."
user={user}
primaryCta={{ href: "/", label: "Go home" }}
secondaryCta={{ href: "/help", label: "Get help" }}
suggestions={suggestions}
layoutTitle="Forbidden"
/>
);
};
export const RateLimitPage: FC<{ user?: User | null; retryAfterSeconds?: number; requestId?: string }> = ({ user, retryAfterSeconds, requestId }) => (
<ErrorPage
code="429"
eyebrow="Too many requests"
title="You're going a little too fast."
body="We rate-limit certain endpoints to keep things responsive for everyone. The bucket refills in a few seconds — wait it out and try again."
user={user}
note="If you're hitting this from a script, add a polite delay between calls. Authenticated requests get 4× the anonymous bucket."
primaryCta={{ href: "/", label: "Go home" }}
secondaryCta={{ href: "/help", label: "Read the rate-limit docs" }}
suggestions={[
{ href: "/help", label: "Rate-limit reference", hint: "current caps per endpoint" },
{ href: "/settings/tokens", label: "Create a personal access token", hint: "authed callers get a bigger bucket" },
]}
requestId={requestId}
retryAfterSeconds={retryAfterSeconds}
layoutTitle="Rate limited"
/>
);
export const errorPageCss = `
.err-page {
max-width: 760px;
margin: var(--space-8, 56px) auto var(--space-16, 96px);
padding: 0 var(--space-4, 24px);
}
.err-hero {
position: relative;
padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 56px) clamp(32px, 4vw, 56px);
background: var(--bg-elevated);
border: 1px solid var(--border);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 20px 48px -12px rgba(0,0,0,0.45);
}
/* Gradient hairline strip across the top — the signature 2026 motif. */
.err-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, #5b6ee8 30%, #5f8fa0 70%, transparent 100%);
opacity: 0.75;
pointer-events: none;
}
/* Soft radial orb — blurred, low opacity, off the top-right corner.
Adds atmosphere without competing with the headline. */
.err-orb {
position: absolute;
inset: -30% -15% auto auto;
width: 460px; height: 460px;
background: radial-gradient(circle, rgba(91,110,232,0.22), rgba(95,143,160,0.10) 45%, transparent 70%);
filter: blur(80px);
opacity: 0.75;
pointer-events: none;
z-index: 0;
}
.err-hero-inner { position: relative; z-index: 1; }
.err-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
text-transform: uppercase;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.18em;
color: var(--text-muted);
font-weight: 600;
margin-bottom: 18px;
}
.err-eyebrow-dot {
width: 8px; height: 8px;
border-radius: 9999px;
background: linear-gradient(135deg, #5b6ee8, #5f8fa0);
box-shadow: 0 0 0 3px rgba(91,110,232,0.18);
}
/* The display code — 404, 500, etc. */
.err-code {
font-family: var(--font-display);
font-size: clamp(56px, 8vw, 96px);
line-height: 0.95;
font-weight: 800;
letter-spacing: -0.04em;
margin: 0 0 12px;
/* Fallback colour for browsers that don't paint -webkit-text-fill-color
on background-clip:text. The .gradient-text utility (defined in the
layout) applies the gradient on top. */
color: var(--accent);
}
.err-title {
font-family: var(--font-display);
font-size: clamp(22px, 3vw, 30px);
font-weight: 700;
letter-spacing: -0.022em;
line-height: 1.2;
margin: 0 0 12px;
color: var(--text-strong);
}
.err-body {
font-size: 16px;
line-height: 1.6;
color: var(--text-muted);
max-width: 560px;
margin: 0 0 16px;
}
.err-note {
font-size: 14px;
line-height: 1.55;
color: var(--text);
max-width: 600px;
margin: 0 0 22px;
padding: 12px 14px;
background: rgba(91,110,232,0.06);
border: 1px solid rgba(91,110,232,0.22);
border-radius: 10px;
}
/* Real button links — primary + ghost. We deliberately don't reuse
.btn from the layout because it's redefined in a dozen places; a
local pair keeps the error surface visually self-contained. */
.err-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin: 22px 0 28px;
}
.err-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 11px 20px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
border: 1px solid transparent;
transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
line-height: 1;
}
.err-btn-primary {
background: linear-gradient(135deg, #5b6ee8 0%, #5f8fa0 100%);
color: #ffffff;
box-shadow: 0 6px 18px -4px rgba(91,110,232,0.45), inset 0 1px 0 rgba(255,255,255,0.16);
}
.err-btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 10px 24px -6px rgba(91,110,232,0.55), inset 0 1px 0 rgba(255,255,255,0.20);
color: #ffffff;
text-decoration: none;
}
.err-btn-ghost {
background: transparent;
color: var(--text);
border-color: var(--border-strong, var(--border));
}
.err-btn-ghost:hover {
background: rgba(91,110,232,0.06);
border-color: rgba(91,110,232,0.45);
color: var(--text-strong);
text-decoration: none;
}
/* Suggestion list — each row is a full-width link with hover tint. */
.err-suggestions {
list-style: none;
padding: 0;
margin: 0 0 24px;
border-top: 1px solid var(--border);
}
.err-suggestions li { margin: 0; }
.err-suggestions a {
display: flex;
align-items: baseline;
gap: 10px;
padding: 12px 4px;
border-bottom: 1px solid var(--border);
color: var(--text);
text-decoration: none;
transition: padding-left 120ms ease, color 120ms ease;
}
.err-suggestions a:hover {
padding-left: 8px;
color: var(--text-strong);
text-decoration: none;
}
.err-suggestion-label {
font-size: 14.5px;
font-weight: 600;
color: var(--text-strong);
}
.err-suggestion-hint {
flex: 1;
font-size: 12.5px;
color: var(--text-muted);
}
.err-suggestion-arrow {
font-size: 14px;
color: var(--accent);
transition: transform 120ms ease;
}
.err-suggestions a:hover .err-suggestion-arrow { transform: translateX(3px); }
.err-meta-block {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 4px;
}
.err-meta {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 12.5px;
color: var(--text-muted);
flex-wrap: wrap;
}
.err-meta-label {
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 10.5px;
font-weight: 700;
color: var(--text-muted);
}
.err-meta-value,
.err-page .meta-mono {
font-family: var(--font-mono);
background: rgba(255,255,255,0.04);
border: 1px solid var(--border);
border-radius: 6px;
padding: 3px 8px;
font-size: 12px;
color: var(--text);
}
.err-trace {
text-align: left;
margin: 22px 0 0;
padding: 14px 16px;
background: rgba(0,0,0,0.28);
border: 1px solid var(--border);
border-radius: 10px;
font-family: var(--font-mono);
font-size: 12px;
line-height: 1.55;
color: var(--text-muted);
overflow-x: auto;
max-width: 100%;
white-space: pre-wrap;
}
/* Light-theme adjustments — orb + note tint look heavy on white. */
:root[data-theme='light'] .err-hero {
box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 12px 36px -10px rgba(15,16,28,0.10);
}
:root[data-theme='light'] .err-orb {
background: radial-gradient(circle, rgba(109,77,255,0.16), rgba(8,145,178,0.08) 45%, transparent 70%);
}
:root[data-theme='light'] .err-meta-value,
:root[data-theme='light'] .err-page .meta-mono {
background: rgba(15,16,28,0.04);
}
:root[data-theme='light'] .err-trace {
background: rgba(15,16,28,0.04);
}
@media (max-width: 540px) {
.err-page { margin: 24px auto 56px; }
.err-hero { padding: 24px 20px 28px; border-radius: 16px; }
.err-actions .err-btn { flex: 1 1 auto; }
}
`;
function formatRetryAfter(seconds: number): string {
if (seconds < 60) return `${Math.ceil(seconds)}s`;
const m = Math.floor(seconds / 60);
const s = Math.ceil(seconds % 60);
return s > 0 ? `${m}m ${s}s` : `${m}m`;
}
export function renderStandaloneErrorPage(opts: {
code: string; eyebrow: string; title: string; body: string;
requestId?: string; signedIn?: boolean;
}): string {
const { code, eyebrow, title, body, requestId, signedIn } = opts;
const suggestionsHtml = signedIn
? `<li><a href="/logout"><span class="err-suggestion-label">Sign in as a different user</span><span class="err-suggestion-hint">switch accounts</span><span class="err-suggestion-arrow" aria-hidden="true">→</span></a></li>
<li><a href="/help"><span class="err-suggestion-label">Read the access docs</span><span class="err-suggestion-hint">permissions & teams</span><span class="err-suggestion-arrow" aria-hidden="true">→</span></a></li>`
: `<li><a href="/login"><span class="err-suggestion-label">Sign in</span><span class="err-suggestion-hint">you might just need to log in</span><span class="err-suggestion-arrow" aria-hidden="true">→</span></a></li>
<li><a href="/help"><span class="err-suggestion-label">Read the access docs</span><span class="err-suggestion-hint">permissions & teams</span><span class="err-suggestion-arrow" aria-hidden="true">→</span></a></li>`;
const requestIdHtml = requestId
? `<div class="err-meta-block"><div class="err-meta" aria-live="polite"><span class="err-meta-label">Request ID:</span><span class="err-meta-value meta-mono">${escapeHtml(requestId)}</span></div></div>`
: "";
return `<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${escapeHtml(code)} ${escapeHtml(eyebrow)}</title>
<style>
:root {
--bg:#0a0b14; --bg-elevated:#0f111a; --text:#e6edf3; --text-strong:#f7f7fb; --text-muted:#8b949e;
--border:rgba(255,255,255,0.08); --border-strong:rgba(255,255,255,0.13);
--accent:#5b6ee8; --accent-2:#5f8fa0;
--font-display:'Inter Tight','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
--font-mono:'JetBrains Mono',ui-monospace,'SF Mono',Menlo,Consolas,monospace;
}
html,body { background:var(--bg); color:var(--text); font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif; margin:0; padding:0; min-height:100vh; }
body::before {
content:''; position:fixed; inset:0; pointer-events:none; z-index:0;
background:
radial-gradient(70% 55% at 85% -20%, rgba(91,110,232,0.07), transparent 65%),
radial-gradient(55% 45% at -10% 115%, rgba(95,143,160,0.05), transparent 65%);
}
.err-page { position:relative; z-index:1; max-width:760px; margin:56px auto 96px; padding:0 24px; }
.err-hero {
position:relative; padding:clamp(28px,4vw,56px) clamp(24px,4vw,56px) clamp(32px,4vw,56px);
background:var(--bg-elevated); border:1px solid var(--border); border-radius:20px; overflow:hidden;
box-shadow:0 1px 0 rgba(255,255,255,0.04), 0 20px 48px -12px rgba(0,0,0,0.45);
}
.err-hero::before {
content:''; position:absolute; top:0; left:0; right:0; height:2px;
background:linear-gradient(90deg, transparent 0%, #5b6ee8 30%, #5f8fa0 70%, transparent 100%);
opacity:0.75;
}
.err-orb {
position:absolute; inset:-30% -15% auto auto; width:460px; height:460px;
background:radial-gradient(circle, rgba(91,110,232,0.22), rgba(95,143,160,0.10) 45%, transparent 70%);
filter:blur(80px); opacity:0.75; z-index:0;
}
.err-hero-inner { position:relative; z-index:1; }
.err-eyebrow {
display:inline-flex; align-items:center; gap:8px; text-transform:uppercase;
font-family:var(--font-mono); font-size:11px; letter-spacing:0.18em;
color:var(--text-muted); font-weight:600; margin-bottom:18px;
}
.err-eyebrow-dot {
width:8px; height:8px; border-radius:9999px;
background:linear-gradient(135deg,#5b6ee8,#5f8fa0);
box-shadow:0 0 0 3px rgba(91,110,232,0.18);
}
.err-code {
font-family:var(--font-display); font-size:clamp(56px,8vw,96px); line-height:0.95;
font-weight:800; letter-spacing:-0.04em; margin:0 0 12px;
background:linear-gradient(135deg,#a855f7 0%,#06b6d4 100%);
-webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
}
.err-title { font-family:var(--font-display); font-size:clamp(22px,3vw,30px); font-weight:700; letter-spacing:-0.022em; line-height:1.2; margin:0 0 12px; color:var(--text-strong); }
.err-body { font-size:16px; line-height:1.6; color:var(--text-muted); max-width:560px; margin:0 0 16px; }
.err-actions { display:flex; gap:10px; flex-wrap:wrap; margin:22px 0 28px; }
.err-btn { display:inline-flex; align-items:center; justify-content:center; padding:11px 20px; border-radius:10px; font-size:14px; font-weight:600; text-decoration:none; border:1px solid transparent; line-height:1; transition:transform 120ms ease, box-shadow 120ms ease, background 120ms ease; }
.err-btn-primary { background:linear-gradient(135deg,#5b6ee8 0%,#5f8fa0 100%); color:#fff; box-shadow:0 6px 18px -4px rgba(91,110,232,0.45), inset 0 1px 0 rgba(255,255,255,0.16); }
.err-btn-primary:hover { transform:translateY(-1px); }
.err-btn-ghost { background:transparent; color:var(--text); border-color:var(--border-strong); }
.err-btn-ghost:hover { background:rgba(91,110,232,0.06); border-color:rgba(91,110,232,0.45); }
.err-suggestions { list-style:none; padding:0; margin:0 0 24px; border-top:1px solid var(--border); }
.err-suggestions a { display:flex; align-items:baseline; gap:10px; padding:12px 4px; border-bottom:1px solid var(--border); color:var(--text); text-decoration:none; transition:padding-left 120ms ease; }
.err-suggestions a:hover { padding-left:8px; color:var(--text-strong); }
.err-suggestion-label { font-size:14.5px; font-weight:600; color:var(--text-strong); }
.err-suggestion-hint { flex:1; font-size:12.5px; color:var(--text-muted); }
.err-suggestion-arrow { font-size:14px; color:var(--accent); }
.err-meta-block { display:flex; flex-direction:column; gap:8px; margin-top:4px; }
.err-meta { display:inline-flex; align-items:center; gap:10px; font-size:12.5px; color:var(--text-muted); flex-wrap:wrap; }
.err-meta-label { text-transform:uppercase; letter-spacing:0.14em; font-size:10.5px; font-weight:700; color:var(--text-muted); }
.err-meta-value, .meta-mono { font-family:var(--font-mono); background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:6px; padding:3px 8px; font-size:12px; color:var(--text); }
@media (max-width:540px) {
.err-page { margin:24px auto 56px; }
.err-hero { padding:24px 20px 28px; border-radius:16px; }
}
</style>
</head>
<body>
<main class="err-page" role="main" aria-labelledby="error-page-title" data-error-code="${escapeHtml(code)}">
<div class="err-hero">
<div class="err-orb" aria-hidden="true"></div>
<div class="err-hero-inner">
<div class="err-eyebrow"><span class="err-eyebrow-dot" aria-hidden="true"></span>${escapeHtml(eyebrow)}</div>
<div class="err-code" aria-hidden="true">${escapeHtml(code)}</div>
<h1 id="error-page-title" class="err-title">${escapeHtml(title)}</h1>
<p class="err-body">${escapeHtml(body)}</p>
<div class="err-actions">
<a href="/" class="err-btn err-btn-primary" data-error-cta="primary">Go home</a>
<a href="/status" class="err-btn err-btn-ghost" data-error-cta="secondary">Status page</a>
</div>
<ul class="err-suggestions" aria-label="Try one of these">${suggestionsHtml}</ul>
${requestIdHtml}
</div>
</div>
</main>
</body>
</html>`;
}
function escapeHtml(s: string): string {
return s.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'");
}
|