2024-04-16 07:48:32 -07:00
|
|
|
import Creeper from "@/components/creeper";
|
|
|
|
import { minecrafter } from "@/font/fonts";
|
|
|
|
import { cn } from "@/lib/utils";
|
2024-04-16 07:26:01 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The 404 page.
|
|
|
|
*
|
|
|
|
* @returns the page jsx
|
|
|
|
*/
|
|
|
|
const NotFoundPage = (): JSX.Element => (
|
2024-04-16 13:40:25 -07:00
|
|
|
<main className="h-[84vh] flex flex-col gap-3 justify-center items-center pointer-events-none">
|
2024-04-16 07:26:01 -07:00
|
|
|
{/* Creeper */}
|
|
|
|
<Creeper />
|
|
|
|
|
|
|
|
{/* Header */}
|
|
|
|
<h1
|
|
|
|
className={cn("text-6xl text-minecraft-green-3", minecrafter.className)}
|
|
|
|
>
|
|
|
|
We're Sssssorry
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{/* Error */}
|
|
|
|
<h2 className="text-2xl">
|
|
|
|
The page you were looking for could not be found.
|
|
|
|
</h2>
|
|
|
|
</main>
|
|
|
|
);
|
|
|
|
export default NotFoundPage;
|