Skip to content

Commit

Permalink
Fix To Improve user experience by renaming In Application Process
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugisha146 committed Dec 2, 2024
1 parent 330f738 commit 53e3079
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/TraineeApply/TraineeApply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const TraineeApplicationForm: React.FC = () => {
</div>
) : (
<div className={getContainerClassName(isDarkMode)}>
<h2 className={getTitleClassName(isDarkMode)}>Trainee Application</h2>
<h2 className={getTitleClassName(isDarkMode)}>Application To Become Trainee</h2>
<form onSubmit={handleSubmit} className="space-y-4 pt-5">
<div className="flex">
<div className="flex-1 p-4">
Expand Down
4 changes: 2 additions & 2 deletions src/components/TraineeApply/TraineeAttributeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ const TraineeAttributeForm = ({ traineeId }) => {
<div className={`min-h-screen w-full flex flex-col ${
isDarkMode ? 'bg-gray-800 text-white' : 'bg-white text-gray-800'
}`}>
<div className="flex-grow flex flex-col items-center justify-center px-4 sm:px-6 lg:px-8">
<div className="flex-grow flex flex-col items-center justify-center p-4 sm:p-6 lg:p-8">
<h3 className={`text-3xl font-semibold mb-8 text-center ${
isDarkMode ? 'text-white' : 'text-gray-800'
}`}>Fill the form for more information</h3>
}`}>Provide information to continue application</h3>
<div className="w-full max-w-4xl">
{page === 1 ? (
<TraineeFormPage1
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Applications/ApplicantApplication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const ApplicantApplication = () => {
to="/applicant/available-jobs/trainee-apply"
className="flex bg-primary dark:bg-[#56C870] rounded-md py-2 mt-2 px-4 text-white font-medium cursor-pointer"
>
Become trainee
Apply To Become Trainee
</Link>
<Link
to="/applicant/myapplication"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/TraineApplicant/Trainee.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ const AddTrainee = (props: any) => {
className="inline-flex items-center justify-center bg-primary dark:bg-[#56C870] rounded-md py-2 px-3 sm:px-4 text-white font-medium cursor-pointer text-sm sm:text-base whitespace-nowrap"
>
<icons.AiOutlinePlus className="mr-1.5 text-lg flex-shrink-0" />
<span className="truncate">Trainee-applicant</span>
<span className="truncate">Create Applicant</span>
</button>
<Select
menuPlacement="auto"
Expand Down

0 comments on commit 53e3079

Please sign in to comment.