@@ -136,7 +136,7 @@ export default function LogicResultsPage() {
- 第{index + 1}题:{question.question}
+ 第{index + 1}題:{question.question}
@@ -147,7 +147,7 @@ export default function LogicResultsPage() {
{!isCorrect && (
- 正确答案:
+ 正確答案:
{correctOption?.text}
@@ -174,17 +174,17 @@ export default function LogicResultsPage() {
diff --git a/app/tests/creative/page.tsx b/app/tests/creative/page.tsx
index 4788641..52d1380 100644
--- a/app/tests/creative/page.tsx
+++ b/app/tests/creative/page.tsx
@@ -86,11 +86,11 @@ export default function CreativeTestPage() {
const hasAnswer = answers[currentQuestion] !== undefined
const scaleOptions = [
- { value: "5", label: "我最符合", color: "text-green-600" },
- { value: "4", label: "比较符合", color: "text-green-500" },
- { value: "3", label: "一般", color: "text-yellow-500" },
- { value: "2", label: "不太符合", color: "text-orange-500" },
- { value: "1", label: "与我不符", color: "text-red-500" },
+ { value: "5", label: "我最符合", color: "text-green-600", bgColor: "bg-green-50" },
+ { value: "4", label: "比較符合", color: "text-green-500", bgColor: "bg-green-50" },
+ { value: "3", label: "一般", color: "text-yellow-500", bgColor: "bg-yellow-50" },
+ { value: "2", label: "不太符合", color: "text-orange-500", bgColor: "bg-orange-50" },
+ { value: "1", label: "與我不符", color: "text-red-500", bgColor: "bg-red-50" },
]
return (
@@ -116,7 +116,7 @@ export default function CreativeTestPage() {
{scaleOptions.map((option) => (