--- const props = Astro.props // interface faqContent{ // question: string; // answer: any; // } const faqContent = await Astro.glob("../content/faq/*.md"); ---

Frequently Asked Questions (FAQ)

{ faqContent.map((faq,index) => { return (

{index + 1}. {faq.frontmatter.question}

Answer: {/* {faq.frontmatter.answer} */}

) }) }