+
>
- );
+ )
}
-
-const data = [
- {
- id: 1,
- faq: "What is a hackathon?",
- answer:
- "A hackathon is an invention marathon where you can work with people around the globe to build a project related to technology! It isn't about hacking into a system, it's instead about hacking something together and learning a great deal in the process.",
- },
- {
- id: 2,
- faq: "Can we work on old or ongoing project?",
- answer:
- "No, you have to start from scratch. You can use open source libraries and frameworks.",
- },
- {
- id: 3,
- faq: "How many members do we need in a team?",
- answer:
- "You can submit solo as well a team with at max 4 members can be formed.",
- },
- {
- id: 4,
- faq: "Registration costs?",
- answer:
- "Nada.",
- },
- {
- id: 5,
- faq: "Can I apply for multiple tracks?",
- answer:
- "Sure thing! Apply for all the tracks you want, like a kid in a candy store! 🏃🍭😄. Just make sure to be relevant.",
- },
- {
- id: 6,
- faq: "Who can participate?",
- answer:
- "Everyone is welcome to participate, be it, students, professionals, or aliens from different planets!",
- },
- {
- id: 7,
- faq: "Is physical presence required, or can we hack remotely?",
- answer:
- "Nah, no need for pants, go remote! 🏠😄",
- },
-];
-
-export default Accordion;
diff --git a/src/components/FAQs/Faq.js b/src/components/FAQs/Faq.js
new file mode 100644
index 0000000..083bdd9
--- /dev/null
+++ b/src/components/FAQs/Faq.js
@@ -0,0 +1,86 @@
+"use client"
+import Accordion from "./Accordion";
+export default function Faq() {
+ const accordiondata = [
+ {
+ serial: "01",
+ question: "What is a hackathon?",
+ answer: "A hackathon is an invention marathon where you can work with people around the globe to build a project related to technology! It isn't about hacking into a system, it's instead about hacking something together and learning a great deal in the process.",
+ },
+ {
+ serial: "02",
+ question: "Can we work on old or ongoing projects?",
+ answer:"No, you have to start from scratch. You can use open source libraries and frameworks."
+ },
+ {
+ serial: "03",
+ question: "How many members do we need in a team?",
+ answer:"You can submit solo as well a team with at max 4 members can be formed."
+ },
+ {
+ serial: "04",
+ question: "Registration costs?",
+ answer:"Nada"
+ },
+ {
+ serial: "05",
+ question: "Can I apply for multiple tracks?",
+ answer:"Sure thing! Apply for all the tracks you want, like a kid in a candy store! 🏃🍭😄. Just make sure to be relevant."
+ },
+ {
+ serial: "06",
+ question: "Who can participate?",
+ answer:"Everyone is welcome to participate, be it, students, professionals, or aliens from different planets!"
+ },
+ {
+ serial: "07",
+ question: "Is physical presence required, or can we hack remotely?",
+ answer:"Nah, no need for pants, go remote! 🏠😄"
+ },
+ ];
+
+
+ return (
+ <>
+
+
+