import { CheckIcon, XMarkIcon, QuestionMarkCircleIcon, FingerPrintIcon, LockClosedIcon } from '@heroicons/react/24/outline' import Logo from '../components/logo'; 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 (