This commit is contained in:
ordinarthur 2026-05-07 17:20:33 +02:00
parent 031b8cc062
commit 0f1a309be3

View File

@ -504,7 +504,7 @@ function PlanBusiness({
</p>
<p className="text-[11.5px] text-ink-3 mb-5">{totalLabel}</p>
<ul className="flex flex-col gap-2.5 text-[12.5px] text-ink-2 leading-snug">
<ul className="flex flex-col gap-2.5 text-[12.5px] text-ink-2 leading-snug b-4">
<FeatureLine strong>Tout Pro, plus :</FeatureLine>
<FeatureLine>5 sièges utilisateurs</FeatureLine>
<FeatureLine>Réponses depuis votre email pro</FeatureLine>
@ -518,9 +518,15 @@ function PlanBusiness({
loading={loading}
disabled={current}
onClick={onUpgrade}
className="mt-auto pt-6 w-full"
className="mt-3 p-6 w-full"
>
{current ? "Plan actuel" : "Passer Business"}
{current ? (
"Plan actuel"
) : (
<>
Passer Business <ArrowRight size={14} aria-hidden="true" />
</>
)}
</Button>
</div>
);