function Comparison() { const rows = [ { feat: 'Dedicated support', ck: 'Same person, every month', firm: 'Rotates between staff', diy: 'Just you' }, { feat: 'Pricing', ck: 'Flat monthly rate', firm: 'Often hourly', diy: 'Your time' }, { feat: 'Consistency', ck: 'Reliable, consistent service', firm: 'Staff changes', diy: 'When/if you get to it' }, { feat: 'Expertise', ck: 'Specialized in service businesses', firm: 'Broader client focus', diy: 'No expertise' }, { feat: 'Communication', ck: 'Direct access — no middlemen', firm: 'Layers & account managers', diy: 'No expert guidance' }, { feat: 'Turnaround time', ck: 'Monthly reports by the 15th', firm: { mid: '— Depends on capacity' }, diy: 'When you get to it' }, { feat: 'Financial confidence', ck: 'Clear numbers & decisions', firm: 'Reactive support', diy: 'Constant uncertainty' }, ]; const Cell = ({ kind, text }) => { if (kind === 'ck') return ( {text} ); if (kind === 'mid') return {text}; return ( {text} ); }; return (
WHY WORK WITH ME?

The smarter way to handle your books.

How a dedicated solo bookkeeper compares to the alternatives.

{rows.map(r => ( {typeof r.firm === 'object' && r.firm.mid ? : } ))}
✦ Chekbooks
(Solo Bookkeeper)
Large CPA Firm
(One-Stop Shop)
DIY
(You & QBO)
{r.feat}
{ e.currentTarget.style.background = 'transparent'; e.currentTarget.style.color = '#163F34'; e.currentTarget.style.borderColor = '#163F34'; }} onMouseLeave={e => { e.currentTarget.style.background = '#3F8074'; e.currentTarget.style.color = '#fff'; e.currentTarget.style.borderColor = '#3F8074'; }} >Book A Free Call
); } Object.assign(window, { Comparison });