import { defaultFaqs } from "../data/faq"; type FaqSectionProps = { title?: string; subtitle?: string; limit?: number; }; export function FaqSection({ title, subtitle, limit }: FaqSectionProps) { const items = limit ? defaultFaqs.slice(0, limit) : defaultFaqs; return (

FAQ

{title ?? "Common questions, clear answers."}

{subtitle ?? "Find pricing, account, export, and security answers for LedgerOne."}

    {items.map((item, index) => (
  1. {index + 1}. {item.question}

    {item.answer}

  2. ))}
); }