aboutsummaryrefslogtreecommitdiff
path: root/src/pages/500.astro
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-04-02 18:53:05 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2026-04-02 18:53:05 +0200
commit7ec588c2178aebf3ec51c875679fda58a10d9394 (patch)
tree281efa1d746990234f33440c54ae6dd1aefd8074 /src/pages/500.astro
parent3dcfdf932babdab522b5544367956531e60956b2 (diff)
Update deps, add error pages, add justfile
Diffstat (limited to 'src/pages/500.astro')
-rw-r--r--src/pages/500.astro17
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>