diff --git a/components/RevealScreen.tsx b/components/RevealScreen.tsx index a51eab6..6845c9d 100644 --- a/components/RevealScreen.tsx +++ b/components/RevealScreen.tsx @@ -133,7 +133,7 @@ export const RevealScreen: React.FC = ({ const ShapeIcon = SHAPES[correctOption.shape]; return ( -
+
{/* Dynamic Background Circles */} = ({ transition={{ type: "spring", bounce: 0.6 }} className="flex flex-col items-center z-10" > -
+
{isCorrect ? ( - + ) : ( - + )}
-

+

{isCorrect ? "Correct!" : "Incorrect"}

@@ -167,32 +167,32 @@ export const RevealScreen: React.FC = ({ className="flex flex-col items-center" > {isCorrect ? ( -
-
- +{pointsEarned} - Points +
+
+ +{pointsEarned} + Points
{correctOption.reason && ( -

+

{correctOption.reason}

)}
) : ( -
+
Don't worry, you can catch up in the next round!
)} {/* Streak Indicator */} {streak > 1 && isCorrect && ( -
- +
+ Answer Streak: {streak}
)} -
+
Total Score:
@@ -201,31 +201,31 @@ export const RevealScreen: React.FC = ({ {!isCorrect && ( -
+
{selectedOption && selectedOption.reason && ( -
-

Why your answer was wrong

-

+

+

Why your answer was wrong

+

{selectedOption.reason}

)} -

The correct answer was

-
-
-
- +

The correct answer was

+
+
+
+
- {correctOption.text} + {correctOption.text}
{correctOption.reason && ( -

+

{correctOption.reason}

)}