diff --git a/apps/web/src/components/solutions/RolloutIllustration.astro b/apps/web/src/components/solutions/RolloutIllustration.astro index 7785abeb5..0fe8f29c4 100644 --- a/apps/web/src/components/solutions/RolloutIllustration.astro +++ b/apps/web/src/components/solutions/RolloutIllustration.astro @@ -1,42 +1,326 @@ --- -const { class: className, ...props } = Astro.props +interface Props { + class?: string + animated?: boolean +} + +const { class: className, animated = false, ...props } = Astro.props + +const viewBox = animated ? '0 0 600 440' : '0 0 600 400' +const cardHeight = animated ? 360 : 320 +const connectorEndY = animated ? 300 : 290 +const qaY = 80 +const betaY = animated ? 165 : 170 +const productionY = animated ? 250 : 260 --- - +
+ Progressive rollout illustration ready. +
+ ) + } + + +{copy('solution_app_examples_cta_text')}
+ {showRolloutIllustration && ( +