Updated the text related to the finish screen depending on the level
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import Button from "@/components/Low/Button";
|
||||
import ModuleTitle from "@/components/Medium/ModuleTitle";
|
||||
import {levelText, LEVEL_TEXT} from "@/constants/ielts";
|
||||
import {Module} from "@/interfaces";
|
||||
import {User} from "@/interfaces/user";
|
||||
import useExamStore from "@/stores/examStore";
|
||||
@@ -7,7 +8,7 @@ import {calculateBandScore} from "@/utils/score";
|
||||
import clsx from "clsx";
|
||||
import Link from "next/link";
|
||||
import {useRouter} from "next/router";
|
||||
import {useEffect, useState} from "react";
|
||||
import {Fragment, useEffect, useState} from "react";
|
||||
import {BsArrowCounterclockwise, BsBook, BsEyeFill, BsHeadphones, BsMegaphone, BsPen, BsShareFill} from "react-icons/bs";
|
||||
|
||||
interface Score {
|
||||
@@ -109,18 +110,7 @@ export default function Finish({user, scores, modules, onViewResults}: Props) {
|
||||
</div>
|
||||
<div className="w-full flex gap-9 mt-32 items-center justify-between">
|
||||
<span className="max-w-3xl">
|
||||
Congratulations on your exam performance! You achieved an impressive{" "}
|
||||
<span className="font-bold">
|
||||
level {calculateBandScore(selectedScore.correct, selectedScore.total, selectedModule, user.focus)}
|
||||
</span>
|
||||
, demonstrating excellent mastery of the assessed knowledge.
|
||||
<br />
|
||||
<br />
|
||||
If you disagree with the result, you can request a review by a qualified teacher. We are committed to the accuracy and
|
||||
transparency of the results. Please contact us for further information.
|
||||
<br />
|
||||
<br />
|
||||
Congratulations again on your outstanding achievement! We are here to support you on your academic journey.
|
||||
{levelText(calculateBandScore(selectedScore.correct, selectedScore.total, selectedModule, user.focus))}
|
||||
</span>
|
||||
<div className="flex gap-9 px-16">
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user