FAQ
A section to display FAQs with expandable answers. Use it on your landing page.

import FAQ from "@/components/FAQ";
 
...
 
<FAQ />The question-answer pairs can be configured in @/config/content.ts:
...
export const faqs: FAQ[] = [
    {
        question: "What is the meaning of life?",
        answer: "42"
    }
]Last Updated: June 7
