# Card Module

The `CauseCardModule` provide the components to create cards, such as the one used in the [evalink marketplace](https://marketplace.evalink.io). The card can be put together with different elements to make them flexible for different use cases.

![List of the integrations in the evalink marketplace, which makes use of the CauseCard](/files/-Mdud5vX42kwPs1Qxvlf)

### Components

* [CauseCard](/modules-components/elements/card-module/components.md#causecard)
* [CauseCardTitle](/modules-components/elements/card-module/components.md#causecardtitle)
* [CauseCardImage](/modules-components/elements/card-module/components.md#causecardimage)
* [CauseCardText](/modules-components/elements/card-module/components.md#causecardtext)

### Example

{% tabs %}
{% tab title="app.component.html" %}

```markup
<cause-card>
    <img cause-card-image src="..." alt="...">
    <h2 cause-card-title>Together for a safer world.</h2>
    <p cause-card-text>
        We’re on a mission to democratize security
        by connecting technology with people to better
        protect lives and valuables. 
    </p>
</cause-card>
```

{% endtab %}

{% tab title="app.module.ts" %}

```typescript
@Module({
    ...,
    imports [
        ...,
        CauseCardModule,
        ...,
    ],
    ...
})
export class AppModule {}
```

{% endtab %}
{% endtabs %}

#### Result

<div align="left"><img src="/files/-MdumBgtVu-BKasXRpOC" alt=""></div>


---

# 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://cause.evalink.io/modules-components/elements/card-module.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.
