---
title: Callout card
description: >
When you release a new feature or want to highlight an opportunity, the
callout card composition draws attention without being intrusive. It
encourages merchants to take action with a clear message and prominent button.
Use callout cards sparingly to announce features, promote functionality, or guide merchants through common first actions. Remove them once merchants have engaged. This composition follows proven design guidelines that help your app feel native to the Shopify admin. See [Built for Shopify requirements](/docs/apps/launch/built-for-shopify/requirements) for more details on these guidelines.
api_name: app-home
source_url:
html: 'https://shopify.dev/docs/api/app-home/patterns/compositions/callout-card'
md: 'https://shopify.dev/docs/api/app-home/patterns/compositions/callout-card.md'
---
# Callout card
When you release a new feature or want to highlight an opportunity, the callout card composition draws attention without being intrusive. It encourages merchants to take action with a clear message and prominent button.
Use callout cards sparingly to announce features, promote functionality, or guide merchants through common first actions. Remove them once merchants have engaged. This composition follows proven design guidelines that help your app feel native to the Shopify admin. See [Built for Shopify requirements](https://shopify.dev/docs/apps/launch/built-for-shopify/requirements) for more details on these guidelines.
#### Use cases
* Announcing new features or integrations
* Driving adoption of app functionality
* Prompting common first actions after install
Examples
### Examples
* #### Display a callout card with illustration and call-to-action
##### Description
Merchants can take action on new features or opportunities you highlight. This pattern presents a callout card that stacks content on smaller screens with a prominent illustration and call-to-action. The \[grid]\(/docs/api/app-home/web-components/layout-and-structure/grid) uses responsive column templates. The illustration and button draw attention to important actions or promotions.
##### jsx
```jsx
Ready to create your custom puzzle?
Start by uploading an image to your gallery or choose from one of our
templates.
Upload image
{" "}
Browse templates{" "}
```
##### html
```html
Ready to create your custom puzzle?
Start by uploading an image to your gallery or choose from one of our templates.
Upload image
Browse templates
```
* #### Navigate to feature pages
##### Description
Use \`href\` attributes on buttons to navigate merchants to feature pages when they click CTA buttons.
##### jsx
```jsx
New: AI-powered puzzle suggestions
Let our AI analyze your images and suggest the perfect puzzle configurations for maximum engagement.
Try it now
Learn more
```
##### html
```html
New: AI-powered puzzle suggestions
Let our AI analyze your images and suggest the perfect puzzle configurations for maximum engagement.
Try it now
Learn more
```
* #### Show dismiss feedback with Toast
##### Description
Use the \[Toast API]\(/docs/api/app-home/apis/toast) to show feedback when the callout card is dismissed.
##### jsx
```jsx
Ready to create your custom puzzle?
Start by uploading an image to your gallery or choose from one of our
templates.
Upload image
Browse templates
{
shopify.toast.show('Card dismissed');
}}
/>
```
##### html
```html
Ready to create your custom puzzle?
Start by uploading an image to your gallery or choose from one of our
templates.
Upload image
Browse templates
```