You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* {question, answer} or {question, answerCoponent}
10
-
* answer will just be a simple string, while answerComponent is a svelte component in FAQComponents
11
-
* Reasons we might want to use FAQComponents is so we can do things like links and lists
12
-
*/
13
-
14
3
exportdefault[
15
-
{
16
-
question: 'What is HackTJ?',
17
-
answer:
18
-
'HackTJ is a student-run hackathon where you will have 24 hours to learn how to code and/or work with your friends to make your idea come to life.'
19
-
},
20
-
{
21
-
question: 'When is HackTJ?',
22
-
answerComponent: FAQWhen
23
-
},
24
-
{
25
-
question: 'Who can attend?',
26
-
answer:
27
-
"HackTJ is open to all current high school students attending Fairfax County Public Schools. If you're not a high school student but would like to attend, consider coming as a judge, mentor, or volunteer."
28
-
},
29
-
{
30
-
question: 'Is there any cost?',
31
-
answer: 'Nope! Thanks to our sponsors, HackTJ is completely free!'
32
-
},
33
-
{
34
-
question: 'Is there a deadline?',
35
-
answerComponent: FAQDeadline
36
-
},
37
-
{
38
-
question: 'Is there a code of conduct?',
39
-
answerComponent: FAQCodeOfConduct
40
-
},
41
-
{
42
-
question: "Isn't hacking illegal?",
43
-
answer:
44
-
'In the context of a hackathon, "hacking" is to build a real application over the length of the event. It\'s important to not confuse this with illegal hacking, which is gaining unauthorized access to a computer.'
45
-
},
46
-
{
47
-
question: 'Do I need a team?',
48
-
answer:
49
-
"If you already have a team of 2-4 people you want to work with, that's awesome! If not don't worry because we'll have an opportunity for people to join a team if they need one."
50
-
},
51
-
{
52
-
question: 'What prizes can I win?',
53
-
answerComponent: FAQPrizes
54
-
},
55
-
{
56
-
question: 'How do I register?',
57
-
answerComponent: FAQRegister
58
-
},
59
-
{
60
-
question: 'How are ticket decisions made?',
61
-
answer:
62
-
'Tickets decisions are made based on a variety of factors, including the registration time. Sign up quickly to increase the chance that you are given a HackTJ 12.0 ticket!'
63
-
}
64
-
];
4
+
{
5
+
category: "About HackTJ",
6
+
questions: [
7
+
{
8
+
question: 'What is HackTJ?',
9
+
answer: 'HackTJ is a student-run hackathon where you will have 24 hours to learn how to code and/or work with your friends to make your idea come to life.'
10
+
},
11
+
{
12
+
question: 'When is HackTJ?',
13
+
answerComponent: FAQWhen
14
+
},
15
+
{
16
+
question: "Isn't hacking illegal?",
17
+
answer: 'In the context of a hackathon, "hacking" is to build a real application over the length of the event. It\'s important to not confuse this with illegal hacking, which is gaining unauthorized access to a computer.'
18
+
},
19
+
{
20
+
question: 'Is there a code of conduct?',
21
+
answerComponent: FAQCodeOfConduct
22
+
}
23
+
]
24
+
},
25
+
{
26
+
category: "Registration",
27
+
questions: [
28
+
{
29
+
question: 'How do I register?',
30
+
answerComponent: FAQRegister
31
+
},
32
+
{
33
+
question: 'Is there a deadline?',
34
+
answerComponent: FAQDeadline
35
+
},
36
+
{
37
+
question: 'How are ticket decisions made?',
38
+
answer: 'Tickets decisions are made based on a variety of factors, including the registration time. Sign up quickly to increase the chance that you are given a HackTJ 12.0 ticket!'
39
+
},
40
+
{
41
+
question: 'Is there any cost?',
42
+
answer: 'Nope! Thanks to our sponsors, HackTJ is completely free!'
43
+
}
44
+
]
45
+
},
46
+
{
47
+
category: "Prizes and Eligibility",
48
+
questions: [
49
+
{
50
+
question: 'What prizes can I win?',
51
+
answerComponent: FAQPrizes
52
+
},
53
+
{
54
+
question: 'Who can attend?',
55
+
answer: "HackTJ is open to all current high school students attending Fairfax County Public Schools. If you're not a high school student but would like to attend, consider coming as a judge, mentor, or volunteer."
56
+
},
57
+
{
58
+
question: 'Do I need a team?',
59
+
answer: "If you already have a team of 2-4 people you want to work with, that's awesome! If not don't worry because we'll have an opportunity for people to join a team if they need one."
0 commit comments