Usage

---
import { FAQs } from '~/components';
---

<FAQs client:load />

Content

To update the FAQs, edit src/config/faq.ts.

export const faqs = [
  {
    question: 'What do I get with StarterKit?',
    answer:
      '- TypeScript starter kits based on Astro and Next.js<br/>...',
  },
  ...
];

FAQ Type

question
string
required

The question of the FAQ.

answer
string
required

The answer of the FAQ. Can include HTML.