troylusty.com/src/pages/404.astro

31 lines
854 B
Text
Raw Normal View History

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
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
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>
<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>