fix not found page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m27s

This commit is contained in:
Lee
2024-04-21 13:50:02 +01:00
parent 130444e3e2
commit ab2716a8c9

View File

@ -1,16 +0,0 @@
import Link from "next/link";
import { Button } from "@/app/components/ui/button";
export default function NotFound() {
return (
<div className="flex text-center flex-col gap-4">
<div>
<h2 className="text-red-400 font-2xl font-semibold">Not Found</h2>
<p>The page you are looking for was not found.</p>
</div>
<Link href="/">
<Button>Return Home</Button>
</Link>
</div>
);
}