# Feature14

The `Feature14` component displays a feature section with a heading, two graphics cards with titles and descriptions, and a list of feature cards with icons and descriptions, all styled and responsive based on the theme and screen size.

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

**Component path**: `src/blocks/feature/Feature14.tsx`

**Component usage path:**  `src/app/blocks/feature/feature14/page.tsx`

**Preview link:** [**https://www.saasable.io/blocks/feature/feature14**](https://www.saasable.io/blocks/feature/feature14)

## Props Details

| Prop             | Type                 | Description                              | Displayed as                                                                                                                            |
| ---------------- | -------------------- | ---------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| **heading**      | `string`             | Main heading for the feature section     | `"Explore Our Features"`                                                                                                                |
| **title**        | `string`             | Title for the first image section        | `"Feature Title 1"`                                                                                                                     |
| **description**  | `string`             | Description for the first image section  | `"This is a detailed description of the first feature."`                                                                                |
| **title2**       | `string`             | Title for the second image section       | `"Feature Title 2"`                                                                                                                     |
| **description2** | `string`             | Description for the second image section | `"This is a detailed description of the second feature."`                                                                               |
| **actionBtn**    | `ButtonProps`        | Props for the main action button         | `{ variant: 'contained', color: 'primary', children: 'Learn More' }`                                                                    |
| **cards**        | `FeatureCardProps[]` | Array of feature cards to display        | `[ { icon: 'icon-name1', title: 'Feature 1', description: 'Description of Feature 1' }, ... ]`                                          |
| **image1**       | `ImageCommonProps`   | Props for the first image                | <p><code>"path-to-image1.svg"</code><br> or <br><code>{ light: 'path-to-image1-light.svg', dark: 'path-to-image1-dark.svg' }</code></p> |
| **image2**       | `ImageCommonProps`   | Props for the second image               | <p><code>"path-to-image2.svg"</code><br> or <br><code>{ light: 'path-to-image2-light.svg', dark: 'path-to-image2-dark.svg' }</code></p> |


---

# Agent Instructions: 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/feature/feature14.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.
