Skip to content

Commit

Permalink
Run format, eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
aldriebarcena committed Oct 22, 2024
1 parent c65eb82 commit 767fdbd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
21 changes: 10 additions & 11 deletions src/components/about/FAQs.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
import React from 'react'
import React from "react";
import Header from "@/components/Header";
import FAQ from "@/components/about/FAQ"
import faqs from '@/data/FAQ';
import FAQ from "@/components/about/FAQ";
import faqs from "@/data/FAQ";

const FAQs = () => {
return (
<div className="w-full relative">
<div className="flex text-xl justify-start">
<div className=""></div>
<Header position="left" title="FAQs" />
</div>
<div className="relative w-full">
<div className="flex justify-start text-xl">
<div className=""></div>
<Header position="left" title="FAQs" />
</div>

<div className='grid grid-cols-2 m-16'>
<div className="m-16 grid grid-cols-2">
{faqs.map((faq, index) => (
<FAQ key={index} text={faq.question} />
))}
</div>

</div>
</div>
);
};
Expand Down
18 changes: 9 additions & 9 deletions src/data/Faq.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
const faqs = [
{
question: "When and where is practice?",
answer: ""
answer: "",
},
{
question: "Do you need to be experienced to join and participate?",
answer: ""
answer: "",
},
{
question: "What should you bring?",
answer: ""
answer: "",
},
{
question: "What does practice look like?",
answer: ""
answer: "",
},
{
question: "How much are dues?",
answer: ""
answer: "",
},
{
question: "Need shuttling?",
answer: ""
answer: "",
},
{
question: "Boxing / Gym Etiquette",
answer: ""
answer: "",
},
{
question: "Do we spar?",
answer: ""
}
answer: "",
},
];

export default faqs;

0 comments on commit 767fdbd

Please sign in to comment.