> 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/hero/hero8.md).

# Hero8

The `Hero8` component displays a hero section with a headline, caption, optional primary button, and a responsive image. It includes a grid layout for a list of items, each featuring a counter and caption, with responsive adjustments for different screen sizes.

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

**Component path**: `src/blocks/hero/Hero8.tsx`

**Component usage path:**  `src/app/blocks/hero/hero8/page.tsx`

**Preview link:** [**https://www.saasable.io/blocks/hero/hero8**](https://www.saasable.io/blocks/hero/hero8)

## Props Details

| Prop            | Type                     | Description                                              | Displayed as                                                                                                                         |
| --------------- | ------------------------ | -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| **headLine**    | `ReactElement`           | Main headline text                                       | `<Typography variant="h1">Our Key Features</Typography>`                                                                             |
| **captionLine** | `string`                 | Subtitle or descriptive text                             | `"Discover the key features that make our product unique."`                                                                          |
| **primaryBtn**  | `ButtonProps` (Optional) | Optional properties for the primary button.              | `{ variant: "contained", color: "primary", children: "Learn More" }`                                                                 |
| **image**       | `ImageCommonProps`       | Image path or object with `light` and `dark` image path. | <p><code>"path-to-image.svg"</code><br> or <br><code>{ light: 'path-to-image-light.svg', dark: 'path-to-image-dark.svg' }</code></p> |
| **listData**    | `ListDataProps[]`        | Array of data objects for the grid                       | `[{ counter: "10", caption: "Years in Business", defaultUnit: "years" }, ...]`                                                       |


---

# 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, and the optional `goal` query parameter:

```
GET https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/hero/hero8.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
