
Usage
- Astro
- Next.js
Content
To update the FAQs, editsrc/config/faq.ts.
FAQ Type
string
required
The question of the FAQ.
string
required
The answer of the FAQ. Can include HTML.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.

---
import { FAQs } from '~/components';
---
<FAQs client:load />
import { FAQs } from '~/components';
export default async function Page() {
return <FAQs />;
}
src/config/faq.ts.
export const faqs = [
{
question: 'What do I get with ShipKit?',
answer:
'- TypeScript boilerplates based on Astro and Next.js<br/>...',
},
...
];