Skip to content

Commit 108e355

Browse files
committed
Added FAQ starter questions
1 parent 13f0b31 commit 108e355

File tree

1 file changed

+66
-6
lines changed

1 file changed

+66
-6
lines changed

app/(main)/_components/faqs-section.tsx

+66-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
import Link from "next/link";
2+
13
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "@/components/ui/accordion";
4+
import { hackathonDateInfo } from "@/lib/dates";
5+
import { applicationLink } from "@/lib/links";
26

37
const FaqsSection = () => {
48
return (
@@ -8,16 +12,72 @@ const FaqsSection = () => {
812
<div className="px-10 w-full md:w-1/2">
913
<Accordion type="single" collapsible className="w-full">
1014
<AccordionItem value="item-1">
11-
<AccordionTrigger>What is your name?</AccordionTrigger>
12-
<AccordionContent>Pete. Pete the Panther.</AccordionContent>
15+
<AccordionTrigger>What is a hackathon?</AccordionTrigger>
16+
<AccordionContent>A hackathon is a team-based timed coding competition.</AccordionContent>
1317
</AccordionItem>
1418
<AccordionItem value="item-2">
15-
<AccordionTrigger>Are you really a panther?</AccordionTrigger>
16-
<AccordionContent>What kind of question is that?</AccordionContent>
19+
<AccordionTrigger>What is PantherHacks {hackathonDateInfo.year}?</AccordionTrigger>
20+
<AccordionContent>
21+
PantherHacks {hackathonDateInfo.year} is Chapman University's inaugural hackathon. The event is by
22+
students and for students. Students can participate in teams of 1-4 people.
23+
</AccordionContent>
1724
</AccordionItem>
1825
<AccordionItem value="item-3">
19-
<AccordionTrigger>No but for real, are you a panther?</AccordionTrigger>
20-
<AccordionContent>Yes.</AccordionContent>
26+
<AccordionTrigger>When is PantherHacks {hackathonDateInfo.year}?</AccordionTrigger>
27+
<AccordionContent>
28+
PantherHacks {hackathonDateInfo.year} is a 48-hour hackathon that will take place the weekend of{" "}
29+
{hackathonDateInfo.dateString}.
30+
</AccordionContent>
31+
</AccordionItem>
32+
<AccordionItem value="item-4">
33+
<AccordionTrigger>How do I apply?</AccordionTrigger>
34+
<AccordionContent>
35+
You can apply to PantherHacks {hackathonDateInfo.year} by visiting{" "}
36+
<Link href={applicationLink} target="_blank" className="underline hover:text-primary">
37+
this link
38+
</Link>
39+
.
40+
</AccordionContent>
41+
</AccordionItem>
42+
<AccordionItem value="item-5">
43+
<AccordionTrigger>Where is PantherHacks {hackathonDateInfo.year}?</AccordionTrigger>
44+
<AccordionContent>
45+
Sandhu Conference Center at Chapman University (590 N Shaffer St, Orange, CA 92866).
46+
</AccordionContent>
47+
</AccordionItem>
48+
<AccordionItem value="item-6">
49+
<AccordionTrigger>How much does it cost?</AccordionTrigger>
50+
<AccordionContent>
51+
PantherHacks is free for all attendees. We would like to thank Chapman University's Student Government
52+
Association for providing funding for our event.
53+
</AccordionContent>
54+
</AccordionItem>
55+
<AccordionItem value="item-7">
56+
<AccordionTrigger>Am I eligible to attend?</AccordionTrigger>
57+
<AccordionContent>
58+
All Chapman University students of any field of study are eligible to participate in PantherHacks{" "}
59+
{hackathonDateInfo.year}.
60+
</AccordionContent>
61+
</AccordionItem>
62+
<AccordionItem value="item-8">
63+
<AccordionTrigger>Can I still attend even if I don't know how to code?</AccordionTrigger>
64+
<AccordionContent>
65+
Yes! Prior experience is not required to participate. Mentors will be available to help you if you get
66+
stuck.
67+
</AccordionContent>
68+
</AccordionItem>
69+
<AccordionItem value="item-9">
70+
<AccordionTrigger>Will there be food?</AccordionTrigger>
71+
<AccordionContent>Yes, meals and snacks will be provided throughout the event.</AccordionContent>
72+
</AccordionItem>
73+
<AccordionItem value="item-10">
74+
<AccordionTrigger>Will there be prizes?</AccordionTrigger>
75+
<AccordionContent>
76+
Yes, judges will score projects at the end of the event and prizes will be given to each member of the
77+
winning teams. Judges will determine the winners of each of the four tracks (Artificial Intelligence,
78+
Cybersecurity, Healthcare, Sustainability). Additionally, the Hacker's Choice award will be presented to
79+
the team that receives the most votes from fellow hackathon participants.
80+
</AccordionContent>
2181
</AccordionItem>
2282
</Accordion>
2383
</div>

0 commit comments

Comments
 (0)