> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yuvrajverma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Testimonials Configuration

> Configure customer reviews, ratings, and social proof to build trust

<Callout icon="link-horizontal" color="#2fbe1f">**Configuration File:** `config/testimonials.ts`</Callout>

## Quick Start

<Steps>
  <Step title="Open Configuration File">
    Navigate to `config/testimonials.ts`
  </Step>

  <Step title="Update Section Header">
    ```typescript theme={null}
    section: {
      title: "What Our Customers Say",
      subtitle: "Real reviews from real gamers and server owners.",
    }
    ```
  </Step>

  <Step title="Add your First Rating">
    ```typescript theme={null}
    reviews: [
      {
        name: "John Smith",
        role: "Server Owner",
        game: "Minecraft",
        avatar: "https://api.dicebear.com/9.x/adventurer/svg?seed=John%20Smith&backgroundColor=3b82f6",
        rating: 5,
        verified: true,
        content: "Best hosting I've ever used. Zero lag and amazing support!"
      },
      // Add more reviews...
    ]
    ```
  </Step>

  <Step title="Update Trustpilot Rating">
    ```typescript theme={null}
    trustpilotRating: 4.9,
    trustpilotReviews: 2847,
    trustpilotStarColor: "#00b67a",  // Trustpilot green (default)
    ```
  </Step>
</Steps>

***

## Configuration Structure

### Section Header

```typescript theme={null}
section: {
  title: "What Our Customers Say",
  subtitle: "Real reviews from real gamers and server owners.",
}
```

### Trustpilot Integration

```typescript theme={null}
trustpilotRating: 4.9,              // Your rating (out of 5)
trustpilotReviews: 2847,            // Total number of reviews
trustpilotStarColor: "#00b67a",     // Star color (hex) - default is Trustpilot green
```

**Color Options:**

* `#00b67a` - Trustpilot green (default)
* `#FFD700` - Gold
* `#FFAA00` - Orange
* Any hex color code

### Reviews Array
