Component: Testimonial
Purpose
Displays a quote from a customer, user, or expert to build trust and social proof.
When to Use
- On landing pages to show customer satisfaction.
- On product pages to highlight positive feedback.
- Anywhere you want to showcase endorsements.
How to Use (Options / Props)
Option ( | Description | Required? | Example Value(s) |
|---|---|---|---|
| The actual text of the testimonial. | Yes | |
| The name of the person quoted. | Yes | |
| The title or company of the person. | No | |
| URL path to an image of the author. | No | |
| Optional extra text/notes inside. | No | Put text between tags |
Example MDX Usage
Basic Testimonial:
<Testimonial
quote="Using this service was the best decision we made this year. Highly recommended!"
authorName="John Smith"
authorTitle="Marketing Manager, Globex Corp"
/>
Testimonial with Avatar and extra note:
<Testimonial
quote="Incredible results in just the first month. The support team is fantastic too."
authorName="Alice Green"
authorTitle="Founder, Startup Hub"
avatarSrc="/images/avatars/alice.png"
>
*Results may vary.*
</Testimonial>
Updated on: 13/05/2026
Thank you!