> For the complete documentation index, see [llms.txt](https://phoenixcoded.gitbook.io/saasable/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/testimonial/testimonial2.md).

# Testimonial2

The `Testimonial2` component features a carousel of testimonial videos with associated reviews, using a slider for navigation and a modal for video playback. It handles video modal state and slider control, with responsive adjustments for arrow visibility and playback behavior.

{% hint style="info" %}
All available props for the Testimonial2 component are defined and handled within **Component usage path** file. This allows for easy modifications to the content of the Testimonial section.
{% endhint %}

**Component path**: `src/blocks/testimonial/Testimonial2.tsx`

**Component usage path:**  `src/app/blocks/testimonial/testimonial2/page.tsx`

**Preview link:** [**https://www.saasable.io/blocks/testimonial/testimonial2**](https://www.saasable.io/blocks/testimonial/testimonial2)

## Props Details

| Prop             | Type                     | Description                                                | Displayed as                                                                                                                                                                                                                    |
| ---------------- | ------------------------ | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **heading**      | `string`                 | Main title for the testimonial section                     | `"What Our Clients Are Saying"`                                                                                                                                                                                                 |
| **caption**      | `string` (Optional)      | Subtitle or additional context                             | `"Read about the experiences of our satisfied clients"`                                                                                                                                                                         |
| **testimonials** | `TestimonialDataProps[]` | List of testimonial objects with video and profile details | `[ { bgImage: "/images/bg1.jpg", videoSrc: "/videos/testimonial1.mp4", review: "This service exceeded my expectations!", ratings: 5, profile: { name: "Alice Johnson", title: "Founder", image: "/images/alice.jpg" } }, ... ]` |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/testimonial/testimonial2.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
