--- import { FAQs } from '~/components'; --- <FAQs client:load />
import { FAQs } from '~/components'; export default async function Page() { return <FAQs />; }
To update the FAQs, edit src/config/faq.ts.
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/>...', }, ... ];
The question of the FAQ.
The answer of the FAQ. Can include HTML.