FAQ

Accordion-based frequently asked questions section.

Preview

Frequently asked, boldly answered.

Quick answers for the most common @trents/ui questions.

Installation

terminal
$
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/faq.json

Usage

faq-demo.tsx
import Faq from "@/components/blocks/faq"

export default function FaqDemo() {
  return (
    <Faq
      // Customize the FAQ header copy.
      title="Frequently asked, boldly answered."
      description="Quick answers for the most common @trents/ui questions."
      // Each item needs a question and answer.
      items={[
        {
          question: "Is @trents/ui free to use?",
          answer:
            "Yes. The core library and marketing blocks are free and open-source.",
        },
        {
          question: "Can I customize the colors?",
          answer:
            "Absolutely. The entire system runs on CSS variables, so any palette works.",
        },
        {
          question: "Is this tied to a specific framework?",
          answer:
            "The components are React-first, but you can adapt them for any stack.",
        },
      ]}
    />
  )
}
0