mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-09 10:44:59 -05:00
17 lines
400 B
TypeScript
17 lines
400 B
TypeScript
|
|
import Footer from "@/components/misc/Footer";
|
||
|
|
import Link from "next/link";
|
||
|
|
|
||
|
|
export default function NotFound() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<span className="flex justify-center items-center text-center min-h-screen h-max">
|
||
|
|
<div className="block">
|
||
|
|
That page couldn't be found <br />
|
||
|
|
<Link href="/">Go home</Link>
|
||
|
|
</div>
|
||
|
|
</span>
|
||
|
|
<Footer />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|