Skip to main content
Clever Ops

Metrics Fusion Features

Feature rows fused with proof, every capability carries its own counting mini-stat in tabular figures, so the claim and its evidence share one line.

Preview & code

Loading Metrics Fusion Features preview

Installation

pnpm dlx shadcn@latest add @cleverui/feature-metrics-fusion

Requires the @cleverui registry in your components.json, a one-off, two-line setup.

Usage

tsx
import { FeatureMetricsFusion } from '@/components/blocks/feature-metrics-fusion'
Exampletsx
import { GitBranch, ShieldCheck, Timer, Workflow } from 'lucide-react'
import { FeatureMetricsFusion } from '@/components/blocks/feature-metrics-fusion'

export default function FeatureMetricsFusionDemo() {
  return (
    <FeatureMetricsFusion
      eyebrow="Measured in production"
      heading="Every claim ships with a number."
      description="Fieldnote runs the operational layer for product teams. These figures are medians from the last 90 days across paying workspaces."
      features={[
        {
          icon: Timer,
          title: 'Deploy to production',
          body: 'Push merges through review gates and canary checks without a release manager in the loop.',
          stat: {
            value: 48,
            suffix: 's',
            label: 'median deploy time',
          },
        },
        {
          icon: Workflow,
          title: 'Cross-tool handoffs',
          body: 'Work advances from Linear to GitHub to PagerDuty as stages complete, no status meetings to keep the board honest.',
          stat: {
            value: 12.4,
            suffix: 'k',
            decimals: 1,
            label: 'handoffs per week',
          },
        },
        {
          icon: ShieldCheck,
          title: 'Policy-checked writes',
          body: 'Every mutation is evaluated against your published policy pack before it lands in the system of record.',
          stat: {
            value: 99.98,
            suffix: '%',
            decimals: 2,
            label: 'policy pass rate',
          },
        },
        {
          icon: GitBranch,
          title: 'Incident replay',
          body: 'Reconstruct any failed run from the audit ledger in one click, same inputs, same tools, full timeline.',
          stat: {
            value: 3.2,
            suffix: 'min',
            decimals: 1,
            label: 'median time to root cause',
          },
        },
      ]}
    />
  )
}

API reference

FeatureMetricsFusion accepts the following props.

PropTypeDefaultDescription
eyebrowstring
heading*string
descriptionstring
features*FeatureMetricsFusionItem[]3–5 rows; claim + counting evidence on one line

…plus everything from React.HTMLAttributes<HTMLElement>: className, event handlers, aria attributes and the rest pass straight through.

Referenced types

Typestsx
export interface FeatureMetricsFusionItem {
  icon?: LucideIcon
  title: string
  body: string
  stat: FeatureMetricsFusionStat
}

export interface FeatureMetricsFusionStat {
  value: number
  prefix?: string
  suffix?: string
  decimals?: number
  /** evidence caption, e.g. 'median deploy time' */
  label: string
}

Frequently asked questions

How do I install the Metrics Fusion Features component?

Register the @cleverui registry in your components.json ("@cleverui": "https://cleverops.com.au/r/{name}.json"), then run `npx shadcn@latest add @cleverui/feature-metrics-fusion`. The shadcn CLI copies the source into your project, you own the code from that point. You can also copy the source directly from this page.

What dependencies does Metrics Fusion Features require?

Metrics Fusion Features uses motion and lucide-react on top of React and Tailwind CSS. You don't need to install them manually, the shadcn CLI resolves and installs npm dependencies automatically when you add the component.

Can I theme Metrics Fusion Features to match my brand?

Yes. The component is styled entirely with Tailwind utilities over standard design tokens (primary, background, muted, border), so it inherits your existing shadcn/ui theme automatically. Change your CSS variables and the component follows, no source edits needed for palette, radius, or fonts.

Want this built for you?

CleverUI is built by the Clever Ops web team. If you'd rather ship a hand-coded, fast, custom website than assemble one, we build them for Australian businesses every week.

Explore web development services