Metrics3

The Metrics3 component displays a layout with a GraphicsCard containing a heading, optional button, and CounterCard components arranged in a responsive grid layout.

All available props for the Metrics3 component are defined and handled within Component usage path file. This allows for easy modifications to the content of the Metrics section.

Component path: src/blocks/metrics/Metrics3.tsx

Component usage path: src/app/blocks/metrics/metrics3/page.tsx

Preview link: https://www.saasable.io/blocks/metrics/metrics3

Props Details

Prop
Type
Description
Displayed as

heading

string

Main title of the metrics section.

"Tailored for Your Process"

caption

string (optional)

Subtitle or additional description text below the heading.

"Key metrics and milestones"

bgImage

BgImageProps(optional)

URL or path for the background image of the card.

"/images/background.jpg"

exploreBtn

object (optional)

Button configuration, e.g., text, color, size, and onClick handler.

{ text: "Learn More", onClick: () => { ... }}

blockDetail

Array<{ counter: number; caption: string; defaultUnit?: string }>

Array of objects containing counter values, captions, and optional units for display.

[ { counter: 120, caption: "Projects", defaultUnit: "K" }, { counter: 50, caption: "Clients" } ]

Last updated