import type { ScoreCardProps } from '../ScoreCard'

/** Matches docs/mockups/deck-overview-v2.html scoreboard strip. */
export const SCORE_MULTIDEAL: ScoreCardProps = {
  value: 8,
  max: 34,
  trend: { direction: 'up', label: '+2 wk' },
  detail: 'M4 prod env next · CI red (e2e)',
}

export const SCORE_ZYNC: ScoreCardProps = {
  value: 3,
  max: 31,
  trend: { direction: 'flat', label: 'flat 9d · 118 commits — churn' },
  detail: 'Z2 dead pay-links still open',
}

export const SCORE_PRESS: ScoreCardProps = {
  value: 6,
  max: 10,
  trend: { direction: 'up', label: '+1 · customer date Jul 25' },
  detail: 'Hetzner prod · nightly smoke green',
  barColorClassName: 'bg-info',
}
