Skip to content

Commit eed9246

Browse files
committed
fix: update FAQ questions for clarity and consistency
1 parent 1901352 commit eed9246

4 files changed

Lines changed: 194 additions & 248 deletions

File tree

2025/src/sections/faq.jsx

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ const FAQ = () => {
77
const faqData = [
88
{
99

10-
question: "What are the Tracks/Problem Statements?",
10+
question: "What are the 2 Problem Statements?",
1111
answer: (<div className="answer-text">The hackathon will have two tracks: GajShield Track and Mystery Track. Teams in the GajShield Track will receive their problem statement 3-4 days prior and can start working early, but a twist will be introduced on the competition day. <br />Meanwhile, teams in the Mystery Track will receive their problem statement on the day of the competition.</div>)
1212
},
13-
13+
1414
{
1515
question: "How will the problem statements be, and how will the tracks be decided?",
1616
answer: (<div className="answer-text">The problem statements will be provided by the organizers. The tracks will be allotted to the teams by the organizers based on profile and resume fit.</div>)
@@ -33,25 +33,25 @@ const FAQ = () => {
3333
answer: (<div className="answer-text">All participants are required to carry their own laptops and college identity cards.</div>)
3434
},
3535
{
36-
question: "What do people normally make?",
37-
answer: (<div className="answer-text">Hacks can fall into categories such as Web Development, Blockchain, Android, iOS, AI/ML, AR/VR, and Game Development. Participants can combine any of these categories since this is an open innovation hackathon.</div>)
38-
},
39-
{
40-
question: "Where will the hackathon be held?",
41-
answer: (<div className="answer-text">The hackathon will be held at <a href ="https://maps.app.goo.gl/EX4KawzmC1qf9HG98" target="_blank" rel="noopener noreferrer">K.J. Somaiya College of Engineering, Vidyavihar, Mumbai.</a></div>)
42-
},
43-
{
44-
question: "What if I have never been to a hackathon before?",
45-
answer: (<div className="answer-text">Don't worry, we're open to students of all skill levels. We offer talks, and mentors to help you with your project. Hackathons are an excellent opportunity to learn new skills in a short amount of time. Just come with an eagerness to learn and enthusiasm to meet lots of awesome people.</div>)
46-
},
47-
{
48-
question: "What is the required team size?",
49-
answer: (<div className="answer-text">Teams of 1 - 4 members are allowed.</div>)
50-
},
51-
{
52-
question: "What is the Code of Conduct?",
53-
answer: (<div className="answer-text">The appropriate code of conduct is linked <a href="https://drive.google.com/file/d/1EDjvC7DpBDr_j6EsBHBwd-XgZ6KS4_Hi/view" target="_blank" rel="noopener noreferrer">here</a>.</div>)
54-
}
36+
question: "What do people normally make?",
37+
answer: (<div className="answer-text">Hacks can fall into categories such as Web Development, Blockchain, Android, iOS, AI/ML, AR/VR, and Game Development. Participants can combine any of these categories since this is an open innovation hackathon.</div>)
38+
},
39+
{
40+
question: "Where will the hackathon be held?",
41+
answer: (<div className="answer-text">The hackathon will be held at <a href="https://maps.app.goo.gl/EX4KawzmC1qf9HG98" target="_blank" rel="noopener noreferrer">K.J. Somaiya College of Engineering, Vidyavihar, Mumbai.</a></div>)
42+
},
43+
{
44+
question: "What if I have never been to a hackathon before?",
45+
answer: (<div className="answer-text">Don't worry, we're open to students of all skill levels. We offer talks, and mentors to help you with your project. Hackathons are an excellent opportunity to learn new skills in a short amount of time. Just come with an eagerness to learn and enthusiasm to meet lots of awesome people.</div>)
46+
},
47+
{
48+
question: "What is the required team size?",
49+
answer: (<div className="answer-text">Teams of 3 - 4 members are allowed.</div>)
50+
},
51+
{
52+
question: "What is the Code of Conduct?",
53+
answer: (<div className="answer-text">The appropriate code of conduct is linked <a href="https://drive.google.com/file/d/1EDjvC7DpBDr_j6EsBHBwd-XgZ6KS4_Hi/view" target="_blank" rel="noopener noreferrer">here</a>.</div>)
54+
}
5555
];
5656

5757
const toggleAccordion = (index) => {
@@ -65,16 +65,16 @@ const FAQ = () => {
6565
<img src="/assets/AboutUsLeftStreak.svg" className="AboutUsLeftStreak" />
6666

6767
<header className="flashback-header">
68-
<h1 data-aos= "fade-down" data-aos-duration = "500" className="flashback-header-text">FAQ</h1>
68+
<h1 data-aos="fade-down" data-aos-duration="500" className="flashback-header-text">FAQ</h1>
6969
</header>
70-
71-
<div data-aos= "fade-up" data-aos-duration = "500" data-aos-delay = "250" className="faq-accordion">
70+
71+
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="250" className="faq-accordion">
7272
{faqData.map((item, index) => (
73-
<div
74-
key={index}
73+
<div
74+
key={index}
7575
className={`faq-item ${activeIndex === index ? 'active' : ''}`}
7676
>
77-
<div
77+
<div
7878
className="faq-question"
7979
onClick={() => toggleAccordion(index)}
8080
>
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)