import React from 'react' const TONES = { sky: 'border-sky-300/20 bg-sky-300/10', amber: 'border-amber-300/20 bg-amber-400/10', white: 'border-white/10 bg-black/20', } export default function HelpGuideCard({ item, links }) { const primaryHref = item.primaryLinkKey ? links[item.primaryLinkKey] : null const secondaryHref = item.secondaryLinkKey ? links[item.secondaryLinkKey] : null return (

{item.eyebrow}

{item.title}

{item.status}

{item.description}

{item.plannedPath ? (

Planned help route: {item.plannedPath}

) : null} {Array.isArray(item.highlights) && item.highlights.length > 0 ? ( ) : null}
{primaryHref ? ( {item.primaryLabel} ) : null} {secondaryHref ? ( {item.secondaryLabel} ) : null}
) }