{i18n.t("home.how.title")}

{i18n.t("home.how.lead")}

{#each PROCESS_STEPS as step, stepIndex} {@const keys = stepKeys[stepIndex]}
{keys
{step.number}

{keys ? i18n.t(keys.title) : step.title}

{keys ? i18n.t(keys.desc) : step.description}

    {#each step.features as feature, fi}
  • {keys?.features[fi] ? i18n.t(keys.features[fi]) : feature.text}
  • {/each}
{/each}