mirror of
https://github.com/valentineus/popov.link.git
synced 2025-08-13 09:56:39 +03:00
19 lines
371 B
Plaintext
19 lines
371 B
Plaintext
|
---
|
||
|
import Layout from "../layouts/BaseLayout.astro";
|
||
|
---
|
||
|
|
||
|
<Layout>
|
||
|
<div style="text-align:center;">
|
||
|
<h1>404</h1>
|
||
|
<p><strong>Page not found</strong></p>
|
||
|
<p>
|
||
|
<small>
|
||
|
If you see this message, please
|
||
|
<a href=`mailto:valentin@popov.link?subject=${encodeURIComponent('I found a broken page')}`>
|
||
|
let me know
|
||
|
</a>
|
||
|
</small>
|
||
|
</p>
|
||
|
</div>
|
||
|
</Layout>
|