kitten error messages

This commit is contained in:
Joshua Seigler 2022-10-12 12:36:42 -04:00
parent 3c12c945c7
commit 6ff5051f79
No known key found for this signature in database

View file

@ -12,6 +12,18 @@ export function ErrorPage() {
<p> <p>
<i>{error.statusText || error.message}</i> <i>{error.statusText || error.message}</i>
</p> </p>
<p>
<figure>
<img
src={`http://placekitten.com/${
500 + Math.round(Math.random() * 300)
}`}
style={{ width: '100%' }}
alt="kitten"
/>
<figcaption>It's not so bad, here's a kitten</figcaption>
</figure>
</p>
</div> </div>
) )
} }