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
) }