17 lines
464 B
TypeScript
17 lines
464 B
TypeScript
import React from "react";
|
|
import CheckBox from "@/images/check-box.svg";
|
|
import Image from "next/image";
|
|
|
|
function SuccessModal() {
|
|
return (
|
|
<div className="flex flex-col items-center pl-5 pr-5 text-center md:text-xl">
|
|
<Image className=" w-[90px] md:w-[130px] p-5" src={CheckBox} alt={""} />
|
|
<p>Thanks for Signing Up!</p>
|
|
<p>We Hope You Are Excited To See</p>
|
|
<p>Sign365 In Action</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default SuccessModal;
|