# SingleTestimonial

A single testimonial component.

## Props

### testimonial (required)

**type**: `string`

The testimonial text or quote from the customer.

### customer (required)

**type**: `object`

Information about the customer who provided the testimonial.

Properties:

- `img` (`string`, **required**): The URL or path to the customer's image
- `name` (`string`, **required**): The customer's name
- `position` (`string`, **required**): The customer's job title or position

## Example

```mdx
<SingleTestimonial
  testimonial="These components have transformed our development process. Highly recommended!"
  customer={{
    img: "/daniel-castillo.png",
    name: "Daniel Castillo",
    position: "Software Engineer",
  }}
/>
```