Skip to content

Commit c8d3051

Browse files
committed
Fix to improve user experience In Application Process
1 parent 70ce042 commit c8d3051

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/components/TraineeApply/TraineeApply.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const TraineeApplicationForm: React.FC = () => {
8484
</div>
8585
) : (
8686
<div className={getContainerClassName(isDarkMode)}>
87-
<h2 className={getTitleClassName(isDarkMode)}>Trainee Application</h2>
87+
<h2 className={getTitleClassName(isDarkMode)}>Application To Become Trainee</h2>
8888
<form onSubmit={handleSubmit} className="space-y-4 pt-5">
8989
<div className="flex">
9090
<div className="flex-1 p-4">

src/components/TraineeApply/TraineeAttributeForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ const TraineeAttributeForm = ({ traineeId }) => {
9191
<div className={`min-h-screen w-full flex flex-col ${
9292
isDarkMode ? 'bg-gray-800 text-white' : 'bg-white text-gray-800'
9393
}`}>
94-
<div className="flex-grow flex flex-col items-center justify-center px-4 sm:px-6 lg:px-8">
94+
<div className="flex-grow flex flex-col items-center justify-center p-4 sm:p-6 lg:p-8">
9595
<h3 className={`text-3xl font-semibold mb-8 text-center ${
9696
isDarkMode ? 'text-white' : 'text-gray-800'
97-
}`}>Fill the form for more information</h3>
97+
}`}>Provide more information to continue application</h3>
9898
<div className="w-full max-w-4xl">
9999
{page === 1 ? (
100100
<TraineeFormPage1

src/components/sidebar/sidebarItems.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const sidebarItems1 = [
4242
{
4343
path: "Trainee-applicants",
4444
icon: <Icon icon="ic:round-people"></Icon>,
45-
title: "Trainees-Applicants",
45+
title: "Trainees",
4646
},
4747
// {
4848
// path: "Applicant-Stages",

src/pages/Applications/ApplicantApplication.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const ApplicantApplication = () => {
9393
to="/applicant/available-jobs/trainee-apply"
9494
className="flex bg-primary dark:bg-[#56C870] rounded-md py-2 mt-2 px-4 text-white font-medium cursor-pointer"
9595
>
96-
Become trainee
96+
Apply To Become Trainee
9797
</Link>
9898
<Link
9999
to="/applicant/myapplication"

src/pages/TraineApplicant/Trainee.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ const AddTrainee = (props: any) => {
255255
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"
256256
>
257257
<icons.AiOutlinePlus className="mr-1.5 text-lg flex-shrink-0" />
258-
<span className="truncate">Trainee-applicant</span>
258+
<span className="truncate">Trainee</span>
259259
</button>
260260
<Select
261261
menuPlacement="auto"

0 commit comments

Comments
 (0)