Skip to main content
FAQs

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 ShipKit?',
    answer:
      '- TypeScript boilerplates 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.