---
title: Metrics card
description: >-
Merchants want to see how they're doing at a glance. The metrics card
composition highlights important numbers, statistics, or trends so merchants
can quickly understand their activity and performance.
api_name: app-home
source_url:
html: 'https://shopify.dev/docs/api/app-home/patterns/compositions/metrics-card'
md: 'https://shopify.dev/docs/api/app-home/patterns/compositions/metrics-card.md'
---
# Metrics card
Merchants want to see how they're doing at a glance. The metrics card composition highlights important numbers, statistics, or trends so merchants can quickly understand their activity and performance.
Use metrics cards on your homepage or dashboard to surface the data merchants care about most. Include trend indicators when historical comparison adds context. 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 for apps.
#### Use cases
* Displaying app-specific metrics like open rates or subscribers
* Showing engagement data like followers or clicks
* Visualizing trends with comparative indicators
***
## Examples
### Display metrics in a responsive grid with trend indicators
Merchants want to see key numbers and trends at a glance. This pattern displays metrics in a responsive grid with trend indicators. The [grid](https://shopify.dev/docs/api/app-home/web-components/layout-and-structure/grid) uses responsive column templates for side-by-side layout on large screens and stacked layout on small screens. The [badge](https://shopify.dev/docs/api/app-home/web-components/feedback-and-status-indicators/badge) component shows trend indicators.
##### jsx
```tsx
Total Designs
156
{" "}
12%{" "}
Units Sold
2,847
0%
Return Rate
3.2%
{" "}
0.8%{" "}
```
##### html
```html
Total Designs
156
12%
Units Sold
2,847
0%
Return Rate
3.2%
0.8%
```
### Navigate to analytics detail
Use `href` attributes on clickable metrics to navigate merchants to detailed analytics pages.
##### jsx
```tsx
Total Designs
156
12%
Units Sold
2,847
0%
Return Rate
3.2%
0.8%
```
##### html
```html
Total Designs
156
12%
Units Sold
2,847
0%
Return Rate
3.2%
0.8%
```
***