diff --git a/app/results/page.tsx b/app/results/page.tsx new file mode 100644 index 0000000..cf67dbb --- /dev/null +++ b/app/results/page.tsx @@ -0,0 +1,63 @@ +import { CheckIcon, XMarkIcon, QuestionMarkCircleIcon, FingerPrintIcon, LockClosedIcon } from '@heroicons/react/24/outline' + +const features = [ + { + name: 'Correct Questions', + description: + 'You got [insert number here] questions right! Good Job!', + icon: CheckIcon, + }, + { + name: 'Incorrect Questions', + description: + 'You got [insert number here] questions wrong! You can do better!', + icon: XMarkIcon, + }, + { + name: 'Total Questions', + description: + 'There were [insert number here] questions in total.', + icon: QuestionMarkCircleIcon, + } +] + +export default function Example() { + return ( +
+
+
+

You did it!

+

+ Here are the results: +

+

+ On this page you can see what you did at the quiz. We'll give your wrong questions again, another time! +

+
+
+
+ {features.map((feature) => ( +
+
+
+
+ {feature.name} +
+
{feature.description}
+
+ ))} +
+

+ + Go Back + +
+
+
+ ) +}