mhsf-dev/apps/www/src/app/not-found.tsx

17 lines
400 B
TypeScript
Raw Normal View History

2025-03-01 10:00:09 -06:00
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 />
</>
);
}