import React from 'react'; import MetricCard from './shared/MetricCard'; import Compare from './shared/Compare'; import InsightBox from './shared/InsightBox'; import { logicChainData as d } from '../data/dashboardData'; /** * Dashboard 2: Delayed 6 months and counting * (Logic Chain / Sequential Deferral) */ export default function EndlessStudyLoop() { return (

{d.conclusion}

{/* Topic */}
Policy Decision
{d.topic}
{/* Key Metrics */}
j.reason)).size} label="Distinct justifications used" />
{/* The "Study" Loop Timeline */}

Shifting Justifications

{/* Vertical timeline line */}
{d.justifications.map((item, i) => (
{/* Timeline dot */}
{/* Timeline content */}
{item.month} — {item.status}
"{item.reason}"
{item.speaker && item.speaker !== 'N/A' && (
— {item.speaker}
)}
))}
{/* Benchmark Comparison */}

School-Linked Dental Programs by State Type

Source: ASTDD State Oral Health Program Database, 2025

{/* The Logic */} {d.patternType}: {d.inference} {/* Question for the Room */}
Ask them:

"This proposal has been 'under review' for {d.monthsInLimbo} months with {d.totalDeferrals} deferrals. Each time, you give a different reason. {d.benchmarks.republicanAvg.activePrograms} Republican-led states and {d.benchmarks.democraticAvg.activePrograms} Democratic-led states already have active programs. What analysis are you waiting for that 35 states haven't already completed?"

); }