2024-12-23 21:18:55 +00:00
|
|
|
---
|
|
|
|
import Layout from "@layouts/Layout.astro";
|
|
|
|
import { SITE } from "@consts";
|
2025-01-17 22:16:14 +00:00
|
|
|
import Button from "@components/Button.astro";
|
2024-12-23 21:18:55 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<Layout title="404" description={SITE.DESCRIPTION}>
|
|
|
|
<section class="mb-32" id="postHero" aria-labelledby="featured-projects">
|
|
|
|
<div
|
|
|
|
class="flex flex-col items-start justify-between gap-6 md:flex-row md:items-center"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
<h2
|
2025-01-23 18:48:20 +00:00
|
|
|
class="animate-reveal text-2xl font-semibold break-words opacity-0"
|
2024-12-23 21:18:55 +00:00
|
|
|
id="featured-projects"
|
|
|
|
>
|
|
|
|
404
|
|
|
|
</h2>
|
|
|
|
<h3
|
2025-01-23 18:48:20 +00:00
|
|
|
class="animate-reveal mt-2 font-bold opacity-0 [animation-delay:0.1s]"
|
2024-12-23 21:18:55 +00:00
|
|
|
>
|
|
|
|
Content not found
|
|
|
|
</h3>
|
|
|
|
</div>
|
2024-12-26 15:02:43 +00:00
|
|
|
<div class="animate-reveal opacity-0 [animation-delay:0.2s]">
|
2025-01-17 22:16:14 +00:00
|
|
|
<Button href="/" link="Go home" />
|
2024-12-23 21:18:55 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</Layout>
|