refactor(pricing-page): rename tiers Trial/Starter/Scale/Enterprise

Customer-facing tier names replace the internally-coded
MID/HIGH/BUSINESS labels. Pricing structure (envs, apps,
retention, features) is unchanged. CTA labels updated to match.

The 'Everything in X' feature lines reference the new neighbour
names. Footer note 'HIGH and BUSINESS' updated to 'Scale and
Enterprise'.

Verified: dist/ contains no remaining MID/HIGH/BUSINESS strings.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-25 02:36:43 +02:00
parent 5f06e5ccad
commit 21c1122369

View File

@@ -33,7 +33,7 @@ const tiers: FullTier[] = [
cta: 'Start free trial', cta: 'Start free trial',
}, },
{ {
name: 'MID', name: 'Starter',
price: '20 €', price: '20 €',
priceNote: 'per month', priceNote: 'per month',
envs: '2 environments', envs: '2 environments',
@@ -41,28 +41,28 @@ const tiers: FullTier[] = [
retention: '7-day retention', retention: '7-day retention',
features: ['Everything in Trial', 'Data flow lineage', 'Cross-service correlation'], features: ['Everything in Trial', 'Data flow lineage', 'Cross-service correlation'],
href: auth.signUpUrl, href: auth.signUpUrl,
cta: 'Start on MID', cta: 'Start on Starter',
highlight: true, highlight: true,
}, },
{ {
name: 'HIGH', name: 'Scale',
price: 'Contact', price: 'Contact',
priceNote: 'sales', priceNote: 'sales',
envs: 'Unlimited environments', envs: 'Unlimited environments',
apps: '50 apps', apps: '50 apps',
retention: '90-day retention', retention: '90-day retention',
features: ['Everything in MID', 'Live debugger', 'Exchange replay', 'Live tap'], features: ['Everything in Starter', 'Live debugger', 'Exchange replay', 'Live tap'],
href: auth.salesMailto, href: auth.salesMailto,
cta: 'Talk to sales', cta: 'Talk to sales',
}, },
{ {
name: 'BUSINESS', name: 'Enterprise',
price: 'Contact', price: 'Contact',
priceNote: 'sales', priceNote: 'sales',
envs: 'Unlimited environments', envs: 'Unlimited environments',
apps: 'Unlimited apps', apps: 'Unlimited apps',
retention: '365-day retention', retention: '365-day retention',
features: ['Everything in HIGH', 'Priority support', 'SLA', 'Dedicated success contact'], features: ['Everything in Scale', 'Priority support', 'SLA', 'Dedicated success contact'],
href: auth.salesMailto, href: auth.salesMailto,
cta: 'Talk to sales', cta: 'Talk to sales',
}, },
@@ -117,7 +117,7 @@ const tiers: FullTier[] = [
))} ))}
</div> </div>
<p class="text-center text-text-faint text-sm mt-10"> <p class="text-center text-text-faint text-sm mt-10">
Prices in EUR, excluding VAT. Billed monthly. Annual billing available for HIGH and BUSINESS — <a href={auth.salesMailto} class="text-accent hover:underline">talk to sales</a>. Prices in EUR, excluding VAT. Billed monthly. Annual billing available for Scale and Enterprise — <a href={auth.salesMailto} class="text-accent hover:underline">talk to sales</a>.
</p> </p>
</div> </div>
</section> </section>