Usage
---
import { FAQs } from '~/components';
---
<FAQs client:load />
---
import { FAQs } from '~/components';
---
<FAQs client:load />
import { FAQs } from '~/components';
export default async function Page() {
return <FAQs />;
}
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
The answer of the FAQ. Can include HTML.