2024-02-15 18:42:07 +04:00
---
// Import section components
import MainLayout from "../layouts/MainLayout.astro";
2024-02-16 08:36:04 +04:00
import Btn404 from "../components/ui/buttons/Btn404.astro";
2024-02-15 18:42:07 +04:00
---
<MainLayout
title="Page Not Found | ScrewFast"
meta="ScrewFast offers top-tier hardware tools and expert construction services to meet all your project needs. Start exploring and contact our sales team for superior quality and reliability."
>
<section class="grid h-svh place-content-center">
<div class="mx-auto max-w-screen-xl px-4 py-8 lg:px-6 lg:py-16">
<div class="mx-auto max-w-screen-sm text-center">
<h1
class="text-dark mb-4 text-7xl font-extrabold text-yellow-500 dark:text-yellow-400 lg:text-9xl"
>
404
</h1>
<p
class="mb-4 text-balance text-3xl font-bold tracking-tight text-neutral-700 dark:text-neutral-300 md:text-4xl"
>
Oops, this isn't the tool you were looking for!
</p>
<p
class="mb-4 text-pretty text-lg text-neutral-600 dark:text-neutral-400"
>
Don't let this hiccup slow you down. Let's get you back to building
your masterpiece.
</p>
2024-02-16 08:36:04 +04:00
<Btn404 title="Go Back" id="go-back" />
2024-02-15 18:42:07 +04:00
</div>
</div>
</section>
</MainLayout>
2024-02-16 08:36:04 +04:00
<script>
document.getElementById("go-back")?.addEventListener("click", () => {
history.back();
});
</script>