Skip to content

Commit

Permalink
Fix data for faq
Browse files Browse the repository at this point in the history
  • Loading branch information
raihahahan committed Oct 28, 2024
1 parent a8427a8 commit 1d693ba
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/faq/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,21 @@ export default function Page() {
>
Hackathon
</h2>
<FaqAccordion items={mockData.workshops} />
<FaqAccordion items={mockData.hackathon} />
<h2
className="text-7xl mb-8 mt-8 font-bold"
style={{ color: "#6c93d6" }}
>
Workshops
</h2>
<FaqAccordion items={mockData.demo} />
<FaqAccordion items={mockData.workshops} />
<h2
className="text-7xl mb-8 mt-8font-bold"
className="text-7xl mb-8 mt-8 font-bold"
style={{ color: "#6c93d6" }}
>
Demo day
</h2>
<FaqAccordion items={mockData.demo} />
</div>
</>
);
Expand Down

0 comments on commit 1d693ba

Please sign in to comment.