Review accept

This commit is contained in:
CHIEFSOFT\ameye
2023-06-08 16:21:01 -04:00
parent a3e53afd99
commit 13c0571b92
@@ -4,7 +4,29 @@ function ReviewJobAction() {
return (
<div className=''>
<p className="my-3 py-1 text-base">
Waiting for the completion message from the client before you can approve. Owner True & Review Job
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400">
<tbody>
<tr className="bg-white dark:bg-dark-white border-b dark:border-[#5356fb29] hover:bg-gray-50">
<td className=" py-4">
<div className="flex space-x-2 items-center w-full">
<div className="flex flex-col flex-[0.9]">
<h1 className="font-bold text-xl text-dark-gray dark:text-white">
This Job is Ready for your review
</h1>
</div>
</div>
</td>
<td className="text-right py-4 px-2">
<div className="flex justify-center items-center">
<button type="button" className="w-20 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white">
Reject/Accepts
</button>
</div>
</td>
</tr>
</tbody>
</table>
</p>
</div>
)