import React from 'react'; import { PRICING_TIERS } from '../constants'; export const PricingTiers: React.FC = () => { return (
Editions & services

Choose an engagement

The public drops are free. Paid editions fund ongoing work and include the working files. Custom dossiers are limited in capacity.

{PRICING_TIERS.map((tier) => (
{tier.name}
{tier.price}

{tier.description}

    {tier.features.map((f, i) => (
  • {f}
  • ))}
{(() => { const enabled = (tier.enabled !== false) && !!tier.actionUrl; const isMailto = (tier.actionUrl || '').startsWith('mailto'); return (
{!enabled && tier.disabledHint ? (
{tier.disabledHint}
) : null}
); })()}
))}
); };