29 lines
923 B
TypeScript
29 lines
923 B
TypeScript
import React from "react";
|
||
import DebitAccount from "./DebitAccount";
|
||
|
||
const ApplicantsAttestation: React.FC = () => {
|
||
return (
|
||
<>
|
||
<div className="flex justify-between items-center w-full mt-8 mb-[45px]">
|
||
<h1 className="font-semibold text-[2.375rem] text-[#5C2684] my-[.5rem] max-w-[34rem]">
|
||
Applicant’s Attestation and Debit Instruction
|
||
</h1>
|
||
<div className="flex flex-col gap-[.4375rem]">
|
||
<p className="font-extrabold tracking-[3%] text-[#FBB700] underline">
|
||
For more enquiries and support
|
||
</p>
|
||
<p className="font-extrabold tracking-[3%] text-[#5A5A5A]">
|
||
Call: 09099000000
|
||
</p>
|
||
<p className="font-extrabold tracking-[3%] text-[#5A5A5A]">
|
||
Email: fcmbloan@support.com
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<DebitAccount />
|
||
</>
|
||
);
|
||
};
|
||
|
||
export default ApplicantsAttestation;
|