+
+ {
+ pricingPlans.monthly.slice(0, 3).map((plan) => (
+
+ {plan.popular &&
Beliebt
}
+
+ {plan.icon}
+
+
{plan.name}
+
+
+ {plan.price === 0 ? t.free : plan.price.toString().replace('.', ',')}
+
+ {plan.price > 0 && €}
+
+ {plan.price > 0 &&
{t.perMonth}
}
+
+
+
+ {t.startMana}
+ {plan.startMana.toLocaleString('de-DE')}
+
+
+ {t.regeneration}
+
+ {plan.regeneration} {t.manaPerDay}
+
+
+
+ {t.maxStorage}
+ {plan.storage.toLocaleString('de-DE')}
+
+
+
+
+ {plan.features.map((feature) => (
+ -
+
+ {feature}
+
+ ))}
+
+
+
+ {plan.price === 0 ? t.getStarted : t.selectPlan}
+
+
+ ))
+ }
+
+ {
+ pricingPlans.monthly.length > 3 && (
+
+ {pricingPlans.monthly.slice(3).map((plan) => (
+
+ {plan.popular &&
Beliebt
}
+
+ {plan.icon}
+
+
{plan.name}
+
+ {plan.price.toString().replace('.', ',')}
+ €
+
+
{t.perMonth}
+
+
+
+ {t.startMana}
+ {plan.startMana.toLocaleString('de-DE')}
+
+
+ {t.regeneration}
+
+ {plan.regeneration} {t.manaPerDay}
+
+
+
+ {t.maxStorage}
+ {plan.storage.toLocaleString('de-DE')}
+
+
+
+
+ {plan.features.map((feature) => (
+ -
+
+ {feature}
+
+ ))}
+
+
+
+ {t.selectPlan}
+
+
+ ))}
+
+ )
+ }
+
+
+ {
+ pricingPlans.yearly.slice(0, 3).map((plan) => (
+
+ {plan.popular &&
Beliebt
}
+
+ {plan.icon}
+
+
{plan.name}
+
+
+ {plan.price === 0 ? t.free : plan.price.toString().replace('.', ',')}
+
+ {plan.price > 0 && €}
+
+ {plan.price > 0 &&
{t.perYear}
}
+ {plan.monthlyEquivalent && plan.monthlyEquivalent > 0 && (
+
+ {plan.monthlyEquivalent.toFixed(2).replace('.', ',')} {t.perMonthEquivalent}
+
+ )}
+
+
+
+ {t.startMana}
+ {plan.startMana.toLocaleString('de-DE')}
+
+
+ {t.regeneration}
+
+ {plan.regeneration} {t.manaPerDay}
+
+
+
+ {t.maxStorage}
+ {plan.storage.toLocaleString('de-DE')}
+
+
+
+
+ {plan.features.map((feature) => (
+ -
+
+ {feature}
+
+ ))}
+
+
+
+ {plan.price === 0 ? t.getStarted : t.selectPlan}
+
+
+ ))
+ }
+
+ {
+ pricingPlans.yearly.length > 3 && (
+
+ {pricingPlans.yearly.slice(3).map((plan) => (
+
+ {plan.popular &&
Beliebt
}
+
+ {plan.icon}
+
+
{plan.name}
+
+ {plan.price.toString().replace('.', ',')}
+ €
+
+
{t.perYear}
+ {plan.monthlyEquivalent && (
+
+ {plan.monthlyEquivalent.toFixed(2).replace('.', ',')} {t.perMonthEquivalent}
+
+ )}
+
+
+
+ {t.startMana}
+ {plan.startMana.toLocaleString('de-DE')}
+
+
+ {t.regeneration}
+
+ {plan.regeneration} {t.manaPerDay}
+
+
+
+ {t.maxStorage}
+ {plan.storage.toLocaleString('de-DE')}
+
+
+
+
+ {plan.features.map((feature) => (
+ -
+
+ {feature}
+
+ ))}
+
+
+
+ {t.selectPlan}
+
+
+ ))}
+
+ )
+ }
+