---
// Import section components
import MainLayout from "@/layouts/MainLayout.astro";
import Btn404 from "@/components/ui/buttons/Btn404.astro";
// Define variables for page content
const title: string = "404";
const subTitle: string = "Oops, this isn't the tool you were looking for!";
const content: string =
"Don't let this hiccup slow you down. Let's get you back to building your masterpiece.";
const btnTitle: string = "Go Back";
---