diff options
Diffstat (limited to 'src/pages/500.astro')
| -rw-r--r-- | src/pages/500.astro | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/pages/500.astro b/src/pages/500.astro new file mode 100644 index 0000000..f2ce56f --- /dev/null +++ b/src/pages/500.astro @@ -0,0 +1,17 @@ +--- +import Layout from "../layouts/Layout.astro"; +--- + +<Layout + title="500!! - Error interno del servidor" + description="Ocurrió un error interno en el servidor." +> + <h1>Error interno del servidor (HTTP 500)</h1> + + <p> + Ha ocurrido un error interno en el servidor. Es posible que ya esté al tanto + del problema, pero por si acaso, escríbeme a través de mi <a + href="https://www.costas.dev/contact">página de contacto</a + > para informarme sobre el error. + </p> +</Layout> |
