16 lines
501 B
TypeScript
16 lines
501 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] p-3 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 |