diff --git a/src/components/sections/SponsorFAQ.section.tsx b/src/components/sections/SponsorFAQ.section.tsx index 2c578a1c..35a0f18b 100644 --- a/src/components/sections/SponsorFAQ.section.tsx +++ b/src/components/sections/SponsorFAQ.section.tsx @@ -1,193 +1,200 @@ import React from "react"; -import Accordion from "../Accordion"; +import { Accordion } from "@components"; import { TopBorder, BottomBorder, MiddleBody, Hawk, BirdParts } from "@assets"; import { - Veritas, - Assembly, - Soc, - Fdm, - Echo3D, - LeadingLeaders, - Ollon, - OnePassword, - Roomiez, - Balsamiq, - DigitalOcean, - Taskade, - Dcl, - StudentsUnion, - CCubed, - Mlh, - Fossa, - Lcs, + Veritas, + Assembly, + Soc, + Fdm, + Echo3D, + LeadingLeaders, + Ollon, + OnePassword, + Roomiez, + Balsamiq, + DigitalOcean, + Taskade, + Dcl, + StudentsUnion, + CCubed, + Mlh, + Fossa, + Lcs, } from "@assets"; const SponsorFAQSection = () => { - const faqData = [ - { - question: "So, what exactly is a hackathon?", - answer: "Our product is...", - }, - { question: "Do I need a team?", answer: "Our product is..." }, - { - question: "When and where is HawkHacks happening?", - answer: "Our product is...", - }, - { question: "Are there any prizes?", answer: "Our product is..." }, - { question: "How much does it cost?", answer: "Our product is..." }, - { - question: "Who can attend? Do I need to be a skilled leet programmer?", - answer: "Our product is...", - }, - { - question: "This is a cool FAQ but I still have questions!", - answer: "Our product is...", - }, - // Add more FAQ items as needed - ]; + const faqData = [ + { + question: "So, what exactly is a hackathon?", + answer: "Our product is...", + }, + { + question: "Do I need a team?", + answer: "Our product is..." + }, + { + question: "When and where is HawkHacks happening?", + answer: "Our product is...", + }, + { + question: "Are there any prizes?", + answer: "Our product is..." + }, + { + question: "How much does it cost?", + answer: "Our product is..." + }, + { + question: "Who can attend? Do I need to be a skilled leet programmer?", + answer: "Our product is...", + }, + { + question: "This is a cool FAQ but I still have questions!", + answer: "Our product is...", + }, + ]; - return ( -
-
- Top Border - Bird - Bird Parts -
- +
+ Top Border + Bird + Bird Parts +
+ Middle Body -
+ /> +
-
- SPONSORS -
+
+ SPONSORS
- +
+
-
- Veritas -
-
- Assembly -
-
- Soc -
-
- FDM -
-
- Echo3D -
+
+ Veritas +
+
+ Assembly +
+
+ Soc +
+
+ FDM +
+
+ Echo3D +
-
- Leading -
-
- Ollon -
-
- 1Password -
-
- Roomiez -
-
- Balsamiq -
+
+ Leading +
+
+ Ollon +
+
+ 1Password +
+
+ Roomiez +
+
+ Balsamiq +
-
- DigitalOcean -
-
- Taskade -
+
+ DigitalOcean +
+
+ Taskade +
-
- DCL -
+
+ DCL +
-
- PARTNERS -
-
- Student Union - Ccubed - MLH - Fossa - LCS -
+
+ PARTNERS +
+
+ Student Union + Ccubed + MLH + Fossa + LCS +
+
+
+ Bottom Border +
- {/* FAQ Section*/} -
-
- Bottom Border - -
-
-
+
+
+

- FAQ + FAQ

-
-
+
+
-
+
+
+
- - - ); + ); }; export { SponsorFAQSection }; \ No newline at end of file