import ForgotPassword from "@/components/custom/forgotPassword";

import logo from "../../../public/logo.webp";
import Image from "next/image";
type Props = {};

const page = (props: Props) => {
  return (
    <main className="bg-black">
      <div className="flex justify-center h-[97vh] primaryColor items-center rounded-lg m-2 ">
        <div className="space-y-10">
          <Image src={logo} alt="img" height={120} width={400} />
          <ForgotPassword />
        </div>
      </div>
    </main>
  );
};

export default page;
