Components
FAQ
Answers to common questions.
The FAQ
component allows you to display a list of frequently asked questions and answers.
It also adds structured data to your website using the JSON-LD component.
Usage
import { FAQ } from "@/components/turbostart/faq";
function Page() {
return (
<FAQ
faq={[
{
question: "What is TurboStart?",
answer: "TurboStart is a project starter template.",
},
{
question: "How do I get started?",
answer: "You can purchase TurboStart from the website.",
},
{
question: "What is the tech stack?",
answer:
"The tech stack includes Next.js, TypeScript, and Tailwind CSS.",
},
]}
/>
);
}
If you have any questions, please reach out to me on Twitter @checkerschaf. I’m happy to help!