Merge pull request #11 from juancmandev/dev

add 404 page
This commit is contained in:
Juan Manzanero 2024-07-10 15:19:12 +00:00 committed by GitHub
commit c8766819aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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>