import Link from "next/link";
const PageNotFoundComponent = () => {
  return (
    <div className="center">
      <div>
        <h1>404 Page Not Found</h1>
        <p style={{ textAlign: "center" }}>
          Please redirect to <Link href="/">Home</Link>
        </p>
      </div>
    </div>
  );
};

export default PageNotFoundComponent;