Added You are almost there comp

This commit is contained in:
Ebube
2024-03-22 17:19:58 +01:00
parent dd6d92654c
commit e1bd0293f1
7 changed files with 257 additions and 5 deletions
@@ -0,0 +1,26 @@
import React from "react";
import EmploymentDetails from "./EmploymentDetails";
import ReferenceDetails from "./ReferenceDetails";
import { Button } from "..";
const YourAreAlmostThere: React.FC = () => {
return (
<>
<h1 className="font-semibold text-[2.375rem] text-[#5C2684] my-[.5rem]">
Youre almost there
</h1>
<form action="" className="flex flex-col gap-6">
<EmploymentDetails />
<ReferenceDetails />
<Button
className="my-8 max-w-[20.3125rem] btn-R bg-[#5A2C82]"
text="Continue"
type="button"
// onClick={handleNextStep}
/>
</form>
</>
);
};
export default YourAreAlmostThere;