{title}
{!lastScreenIsSummary ||
(lastScreenIsSummary &&
context.currentStep !== steps.length - 1 && (
{`Step ${
context.currentStep + 1
} of ${steps.length}`}
{steps.map((_, i) => (
context.currentStep,
"bg-violet-60": context.currentStep >= i,
},
{
"outline-violet-20 outline outline-4":
context.currentStep === i,
}
)}
/>
))}
))}