{props.time}
16 | > 17 | ); 18 | } 19 | 20 | export default AnouncementCard; 21 | -------------------------------------------------------------------------------- /components/dashboardComponents/AnsweredQuestion.tsx: -------------------------------------------------------------------------------- 1 | import { Disclosure } from '@headlessui/react'; 2 | import { CheckCircleFilled } from '@ant-design/icons'; 3 | import { ChevronUpIcon } from '@heroicons/react/solid'; 4 | 5 | /** 6 | * 7 | * Props used by AnsweredQuestion component used in /about/questions 8 | * 9 | * @param question question asked by current user 10 | * @param answer answer from organizer for corresponding question 11 | * @param colorCode color code used for background of component 12 | * @param iconColorCode color code used for checkmark icon that goes with the component 13 | * 14 | */ 15 | interface AnsweredQuestionProps { 16 | question: string; 17 | answer: string; 18 | colorCode: string; 19 | iconColorCode: string; 20 | isOpen: boolean; 21 | toggleDisclosure: () => void; 22 | } 23 | 24 | /** 25 | * 26 | * Component representing an answered question in /about/questions 27 | * 28 | */ 29 | export default function AnsweredQuestion({ 30 | question, 31 | answer, 32 | colorCode, 33 | iconColorCode, 34 | isOpen, 35 | toggleDisclosure, 36 | }: AnsweredQuestionProps) { 37 | return ( 38 |We will let you know when we are launching
60 | 61 |{props.challenge.description}
24 |18 | Hackathons are 24-hour gatherings where students collaborate to create innovative 19 | projects, forge new connections, and compete for prizes. 20 |
21 |16 | {' '} 17 | {/* !change */}Powered by HackUTD and ACM Dev 18 |
19 |Welcome To
34 |44 | SAMPLE TEXT • SAMPLE TEXT • SAMPLE TEXT • SAMPLE TEXT • SAMPLE TEXT • SAMPLE TEXT • SAMPLE 45 | TEXT • SAMPLE TEXT • SAMPLE TEXT 46 |
47 |16 | {Array.apply(null, Array(200)) 17 | .map(() => 'PRIZES') 18 | .join(' ')} 19 |
20 |Potential prize that participants can win!
27 |{stat.data}
29 |{stat.object}
30 |{props.description}
49 | 66 |