import React from 'react'; export function ScoreDashboardApp() { return (

Score Dashboard

View lead and contact scoring

); } function ScoreCard({ name, score, category }: any) { const color = category === 'hot' ? '#84cc16' : category === 'warm' ? '#f59e0b' : '#6b7280'; return

{name}

{score}

{category}

; }