add 404 page

This commit is contained in:
Juan Carlos Manzanero Domínguez 2024-07-10 09:18:39 -06:00
parent 4406c7be3f
commit 74231a9ec1

14
src/pages/404.astro Normal file
View File

@ -0,0 +1,14 @@
---
import Layout from "@/layouts/Layout.astro";
import LinkButton from "@/components/link-button";
---
<Layout title="juancmandev" description="Error 404. Not found.">
<div class="prose prose-invert">
<h1 class="">Error 404: Not found</h1>
<p>Do not worry, you can <strong>go back to home</strong>.</p>
<LinkButton variant="default" href="/" className="no-underline"
>Home</LinkButton
>
</div>
</Layout>