From 21c11223698157bb9356032b90ea587fcfc85ab1 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sat, 25 Apr 2026 02:36:43 +0200 Subject: [PATCH] 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) --- src/pages/pricing.astro | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/pricing.astro b/src/pages/pricing.astro index 3491dba..fb6cea8 100644 --- a/src/pages/pricing.astro +++ b/src/pages/pricing.astro @@ -33,7 +33,7 @@ const tiers: FullTier[] = [ cta: 'Start free trial', }, { - name: 'MID', + name: 'Starter', price: '20 €', priceNote: 'per month', envs: '2 environments', @@ -41,28 +41,28 @@ const tiers: FullTier[] = [ retention: '7-day retention', features: ['Everything in Trial', 'Data flow lineage', 'Cross-service correlation'], href: auth.signUpUrl, - cta: 'Start on MID', + cta: 'Start on Starter', highlight: true, }, { - name: 'HIGH', + name: 'Scale', price: 'Contact', priceNote: 'sales', envs: 'Unlimited environments', apps: '50 apps', 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, cta: 'Talk to sales', }, { - name: 'BUSINESS', + name: 'Enterprise', price: 'Contact', priceNote: 'sales', envs: 'Unlimited environments', apps: 'Unlimited apps', 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, cta: 'Talk to sales', }, @@ -117,7 +117,7 @@ const tiers: FullTier[] = [ ))}

- Prices in EUR, excluding VAT. Billed monthly. Annual billing available for HIGH and BUSINESS — talk to sales. + Prices in EUR, excluding VAT. Billed monthly. Annual billing available for Scale and Enterprise — talk to sales.