Component library

Showing 2 components with role testimonial.

Narrative

  • <Testimonial>

    testimonialTestimonialNarrative

    Customer or stakeholder quote card with avatar, name, role, and company.

    When to use: Always inside `<TestimonialGrid>`. Use for social proof in case studies and workshop reports. One centred card or three across.

    Often with: TestimonialGridQuotePersonCard

    Preview

    The first automation went live in two weeks. Finance finally trusts the numbers.

    Maria Fernandes
    Head of Finance, Acme Corp
    PropTypeNotes
    childrenReactNodeRequired. Quote body (no surrounding quotation marks).
    namestringRequired. Speaker name.Example: Maria Fernandes
    rolestringOptional. Job title.Example: Head of Finance
    companystringOptional. Organisation.Example: Acme Corp
    avatarUrlstringOptional. Optional headshot URL.
    initialsstringOptional. Avatar fallback.Example: MF

    Examples

    <Testimonial name="Maria Fernandes" role="Head of Finance" company="Acme Corp" initials="MF">
      The first automation went live in two weeks. Finance finally trusts the numbers.
    </Testimonial>
  • <TestimonialGrid>

    testimonialTestimonialNarrative

    Grid of one or three Testimonial cards with optional heading.

    When to use: Social proof section in document reports. One testimonial for a hero quote; three for a balanced row.

    Often with: TestimonialQuote

    Preview

    What teams say after Wave 1

    The first automation went live in two weeks.

    Maria Fernandes
    Head of Finance, Acme Corp
    PropTypeNotes
    titlestringOptional. Section heading above the grid.
    descriptionstringOptional. Subtitle or context line.
    childrenReactNodeRequired. One or three <Testimonial> elements.

    Examples

    <TestimonialGrid title="What teams say after Wave 1">
      <Testimonial name="Maria Fernandes" role="Head of Finance" company="Acme Corp" initials="MF">
        The first automation went live in two weeks.
      </Testimonial>
    </TestimonialGrid>