import Pill from './Pill.jsx'; import { formatAge, formatBoolean } from '../lib/format.js'; export default function ServiceCard({ service }) { const healthLabel = service.health_status || (service.health_ok ? 'healthy' : service.reachable ? 'degraded' : 'offline'); return (