|
| 1 | +import React from "react" |
| 2 | + |
| 3 | +import Container from "./Container" |
| 4 | +import Question from "./Question" |
| 5 | + |
| 6 | +const FAQ = ({ scrollRef }) => ( |
| 7 | + <Container ref={scrollRef}> |
| 8 | + <h2>Frequently Asked Questions</h2> |
| 9 | + |
| 10 | + <Question |
| 11 | + question="What is a hackathon?" |
| 12 | + answer="A hackathon is social coding event where programmers, designers and developers collaborate to solve a problem." |
| 13 | + /> |
| 14 | + |
| 15 | + <Question |
| 16 | + question="Who can participate? Are there any prerequisites or required skills?" |
| 17 | + answer="Anyone is welcome to participate in this event. While experience coding and programming is a huge plus, teams will also need people with strong presentation skills and brilliant ideas." |
| 18 | + /> |
| 19 | + |
| 20 | + <Question |
| 21 | + question="Do I need a team?" |
| 22 | + answer="While you do have the option of working alone, McHacks is a team event so working with others is encouraged. There are a few ways to find teammates: You can pick your team from people you already know, or meet them at group formation session during the hackathon." |
| 23 | + /> |
| 24 | + |
| 25 | + <Question |
| 26 | + question="Is there anything that I need to prep?" |
| 27 | + answer="Other than finding fellow brilliant minds with complementary skills to team up with, there is nothing that you need to prepare in advance." |
| 28 | + /> |
| 29 | + |
| 30 | + <Question |
| 31 | + question="How much does it cost?" |
| 32 | + answer="Nothing! Thanks to our amazing sponsors, McHacks is completely free for our hackers." |
| 33 | + /> |
| 34 | + |
| 35 | + <Question |
| 36 | + question="Will there be prizes?" |
| 37 | + answer="Absolutely. Prizes will be announced closer to McHacks, usually on the day of." |
| 38 | + /> |
| 39 | + |
| 40 | + <Question |
| 41 | + question="How can I get to McHacks?" |
| 42 | + answer="We will be sending buses to nearby universities and cities. To reserve a seat on a bus or to find out if a bus will be stopping near you, check out the travel page on our hacker dashboard. Travel reimbursements will be reviewed on a case-by-case basis and decisions for reimbursement amount will be released on our hacker dashboard." |
| 43 | + /> |
| 44 | + |
| 45 | + <Question |
| 46 | + question="Where will I sleep?" |
| 47 | + answer="There will be a spot for you to catch some ZZZ’s, but we recommend that you bring a sleeping bag or anything else you need in order to sleep well!" |
| 48 | + /> |
| 49 | + </Container> |
| 50 | +) |
| 51 | + |
| 52 | +export default FAQ |
0 commit comments