This commit is contained in:
Korbs 2024-12-11 20:59:07 -05:00
parent 2466f949a9
commit 0f7b1eba40

View file

@ -1,22 +0,0 @@
---
// Fetch Error Message
interface Props {
error: unknown
}
const { error } = Astro.props
---
<h2>Error 500</h2>
<p style="color: gray; font-size: 12px; margin: 0px; font-weight: bold;">An error happened in Astro:</p>
<p style="margin-top: 6px;">{error.message}</p>
<style is:global>
body {
background: #111c29;
color: white;
font-family: Arial, Helvetica, sans-serif;
margin: auto;
max-width: 1200px;
}
</style>