22 lines
No EOL
592 B
Text
22 lines
No EOL
592 B
Text
---
|
|
import Question from "./Question.astro"
|
|
import { LiaDotCircle } from "react-icons/lia";
|
|
const {faq} = Astro.props;
|
|
|
|
---
|
|
<div class = "text-white w-full h-[90vh] ml-[9vw] mb-[20%] mt-[10%]">
|
|
<div class = "text-[2.5vw] flex items-center my-[7vh]">
|
|
<LiaDotCircle className = "mr-[1vw]" />
|
|
<p>
|
|
Frequently Asked Questions
|
|
</p>
|
|
</div>
|
|
<div class = "w-full ml-[10vw]">
|
|
{faq.map((question)=>(
|
|
<Question
|
|
question = {question.question}
|
|
answer = {question.answer}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div> |