setYearly(false)} style={{border:0, background: !yearly?"white":"transparent", color: !yearly?"var(--fg)":"var(--mut-fg)", padding:"8px 16px", borderRadius:99, fontSize:13, fontWeight:500, cursor:"pointer", boxShadow: !yearly?"0 1px 2px rgba(0,0,0,0.06)":"none"}}>{t.pricing.billingMonthly || "Monatlich"}
setYearly(true)} style={{border:0, background: yearly?"white":"transparent", color: yearly?"var(--fg)":"var(--mut-fg)", padding:"8px 16px", borderRadius:99, fontSize:13, fontWeight:500, cursor:"pointer", boxShadow: yearly?"0 1px 2px rgba(0,0,0,0.06)":"none", display:"inline-flex", alignItems:"center", gap:8}}>
{t.pricing.billingYearly || "Jährlich · −10 %"}
{t.pricing.tiers.map((tier,i)=>{
const price = yearly ? (tier.priceYearly ?? tier.price) : (tier.priceMonthly ?? tier.price);
return (
{tier.name}
{tier.featured && Beliebt }
{tier.custom ? (
{tier.priceLabel}
) : (
€ {price}{tier.suffix}
)}
{tier.target}{yearly && !tier.custom && · jährlich abgerechnet }
{tier.features.map((f,j)=>(
{f}
))}
{tier.cta}
);
})}