A calm place to write long-form, and publish it to the open social web.
skypress.blog/
1---
2import ErrorScene from '../components/ErrorScene.astro';
3import { errorScene } from '../lib/reader/errors';
4
5// Astro auto-renders this page when an SSR route throws (e.g. a PDS fetch fails),
6// so no per-route try/catch is needed. Static copy, so prerender it.
7export const prerender = true;
8
9const scene = errorScene( 'server-error' );
10---
11
12<ErrorScene eyebrow={scene.eyebrow} heading={scene.heading} subline={scene.subline} />