RESTfulMC/Frontend/src/app/not-found.tsx
Rainnny7 349747d555
Some checks failed
Deploy Frontend / docker (17, 3.8.5) (push) Failing after 2m52s
Add searching to the docs
2024-04-21 18:14:16 -04:00

33 lines
845 B
TypeScript

import Creeper from "@/components/creeper";
import { minecrafter } from "@/font/fonts";
import { cn } from "@/app/common/utils";
import { ReactElement } from "react";
/**
* The 404 page.
*
* @returns the page jsx
*/
const NotFoundPage = (): ReactElement => (
<main className="h-screen flex flex-col gap-3 justify-center items-center text-center select-none pointer-events-none">
{/* Creeper */}
<Creeper />
{/* Header */}
<h1
className={cn(
"text-5xl sm:text-6xl text-minecraft-green-3",
minecrafter.className
)}
>
We&apos;re Sssssorry
</h1>
{/* Error */}
<h2 className="text-2xl">
The page you were looking for could not be found.
</h2>
</main>
);
export default NotFoundPage;