diff --git a/src/app/student/assessment/page.tsx b/src/app/student/assessment/page.tsx index 9b0534a..26dc2d6 100644 --- a/src/app/student/assessment/page.tsx +++ b/src/app/student/assessment/page.tsx @@ -277,8 +277,8 @@ export default function StudentAssessmentPage() { case 'goal_setting': return (
-

{currentStep.sectionTitle}

-
+

{currentStep.sectionTitle}

+
{goals.map((goal, index) => (
@@ -286,16 +286,16 @@ export default function StudentAssessmentPage() { value={goal} onChange={(e) => handleGoalChange(index, e.target.value)} placeholder={`Goal ${index + 1}`} - className="text-lg" + className="text-2xl p-4 border-2 border-black" />
))}
{goals.length < MAX_GOALS && ( - + )}
); @@ -305,34 +305,34 @@ export default function StudentAssessmentPage() { if (currentStep.question.isInstruction) { return (
-

{currentStep.sectionTitle}

+

{currentStep.sectionTitle}

{currentStep.isGoalQuestion && ( -

+

Regarding your goal: {currentStep.goal}

)} -
-

{currentStep.question.title}

-
+
+

{currentStep.question.title}

+
); } return (
-

{currentStep.sectionTitle}

+

{currentStep.sectionTitle}

{currentStep.isGoalQuestion && ( -

+

Regarding your goal: {currentStep.goal}

)}
- -
+ +