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 ( -