We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5acfdea commit 93edff3Copy full SHA for 93edff3
src/components/tutorial-quiz.tsx
@@ -15,9 +15,19 @@ export default function TutorialQuiz() {
15
{/* Question Card */}
16
<div className="space-y-6">
17
<div className="bg-amber-200/50 p-6 rounded-lg border border-amber-800/30">
18
+ {/* Question */}
19
<h3 className="text-xl font-semibold text-amber-950 mb-4">
20
{currentQuestion.questionText}
21
</h3>
22
+
23
+ {/* Choices */}
24
+ <div className="grid gap-3">
25
+ {currentQuestion.options.map((option) => (
26
+ <button key={option} className="w-full text-left bg-white p-4 ">
27
+ {option}
28
+ </button>
29
+ ))}
30
+ </div>
31
</div>
32
33
0 commit comments