2024-10-02 22:46:00 +00:00
|
|
|
---
|
|
|
|
import Layout from "../layouts/BaseLayout.astro";
|
2025-06-11 17:20:43 +00:00
|
|
|
|
|
|
|
const title = "404 — Page Not Found | Valentin Popov";
|
|
|
|
const description = "The page you're looking for doesn't exist!";
|
2024-10-02 22:46:00 +00:00
|
|
|
---
|
|
|
|
|
2025-06-11 17:20:43 +00:00
|
|
|
<Layout title={title} description={description}>
|
2024-10-02 22:46:00 +00:00
|
|
|
<div style="text-align:center;">
|
|
|
|
<h1>404</h1>
|
|
|
|
<p><strong>Page not found</strong></p>
|
|
|
|
<p>
|
|
|
|
<small>
|
|
|
|
If you see this message, please
|
2025-06-11 17:20:43 +00:00
|
|
|
<a href=`mailto:valentin@popov.link?subject=${encodeURIComponent('I found a broken page')}`>let me know</a>
|
2024-10-02 22:46:00 +00:00
|
|
|
</small>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</Layout>
|