FAQ
An accordion FAQ section driven by config or custom props.
Items from config
Define your FAQ items in config.faq.items:
faq: {
items: [
{
question: "What is Your App?",
answer: "A short, clear answer to the most common question visitors ask.",
},
{
question: "Which payment providers are supported?",
answer: "Both Stripe and Lemon Squeezy — switch with one line in config.",
},
]
}Adding to your page
Drop the component with no props and it reads from config automatically:
<FAQ />Custom items
Pass an items prop to override config entirely:
<FAQ
items={[
{ question: "Custom question?", answer: "Custom answer." },
]}
/>TipA good FAQ removes objections before checkout. Include questions about refunds, the tech stack, the software license, and what kind of support is included.