Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,918 changes: 959 additions & 959 deletions src/data/blogPosts.ts

Large diffs are not rendered by default.

65 changes: 65 additions & 0 deletions src/pages/500.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
import BaseHead from '../components/BaseHead.astro';
import Nav from '../components/Nav.astro';
import Footer from '../components/Footer.astro';
import '../styles/system.css';
---
<!DOCTYPE html>
<html lang="en">
<head>
<BaseHead title="Server Error - Pilot Protocol" description="Something went wrong on our end. We're on it." />
</head>
<body>
<Nav />

<section class="page-head">
<div class="wrap nf-wrap">
<div class="eyebrow">Error · 500</div>
<h1>Something <em>broke.</em></h1>
<p class="lede">
Something went wrong on our end. We've been notified and are working on it.
Try refreshing in a moment, or head back to the <a href="/">home page</a>.
</p>

<div class="nf-cta">
<a href="/" class="btn primary">Home <span class="arr">→</span></a>
<a href="/docs/" class="btn">Docs</a>
<a href="/blog/" class="btn">Blog</a>
<a href="/plans" class="btn">Plans</a>
</div>

<div class="nf-meta">
<div class="k"><div class="l">Status</div><div class="v">HTTP 500 · internal server error</div></div>
</div>
</div>
</section>

<Footer />

<style>
.nf-wrap { max-width: 680px; }
.nf-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 36px; }
.nf-meta {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
padding-top: 24px;
border-top: 1px solid var(--line);
}
.nf-meta .k .l {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--ink-dim);
margin-bottom: 6px;
}
.nf-meta .k .v { font-size: 14px; color: var(--ink); }
.nf-meta .k .v a { color: var(--ink); }
.nf-meta .k .v a:hover { color: var(--accent); }
@media (max-width: 600px) {
.nf-meta { grid-template-columns: 1fr; gap: 16px; }
}
</style>
</body>
</html>
Loading