Website: Update /start CTAs (#20756)

Closes: https://github.com/fleetdm/confidential/issues/7414

Changes:
- Updated the messages in the documentation and orb CTA.
This commit is contained in:
Eric 2024-07-26 13:17:39 -05:00 committed by GitHub
parent 6d87091a89
commit 911b85075f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -210,15 +210,15 @@
<h2>Try it out</h2>
<p>See what Fleet can do</p>
<a purpose="continue-button" class="btn btn-primary docs-cta-continue-button" href="/register">Start now</a>
<% } else if (['2 - Aware', '3 - Intrigued', '4 - Has use case'].includes(me.psychologicalStage)) {%>
<% } else if (['2 - Aware', '3 - Intrigued'].includes(me.psychologicalStage)) {%>
<h2>Tried Fleet yet?</h2>
<p>Continue getting started with Fleet</p>
<a purpose="continue-button" class="btn btn-primary docs-cta-continue-button" href="/start">Continue</a>
<% } else if (me.psychologicalStage === '5 - Personally confident') {%>
<% } else if (me.psychologicalStage === '4 - Has use case') {%>
<h2>Feeling confident?</h2>
<p>Get set up with Fleet</p>
<a purpose="continue-button" class="btn btn-primary docs-cta-continue-button" href="/start">Continue</a>
<% } else if (me.psychologicalStage === '6 - Has team buy-in') {%>
<% } else if (['5 - Personally confident', '6 - Has team buy-in'].includes(me.psychologicalStage)) {%>
<h2>Talk to the team</h2>
<p>Lets get you set up!</p>
<a purpose="continue-button" class="btn btn-primary docs-cta-continue-button" href="/start">Continue</a>

View file

@ -8,13 +8,13 @@
</div>
</div>
<div purpose="banner-text" class="d-flex flex-column justify-content-center">
<% if(['2 - Aware', '3 - Intrigued', '4 - Has use case'].includes(me.psychologicalStage)) { %>
<% if(['2 - Aware', '3 - Intrigued'].includes(me.psychologicalStage)) { %>
<strong>Tried Fleet yet?</strong>
<p>Get started with Fleet</p>
<% } else if(me.psychologicalStage === '5 - Personally confident') { %>
<% } else if(me.psychologicalStage === '4 - Has use case') { %>
<strong>Feeling confident?</strong>
<p>Get set up with Fleet</p>
<% } else if (me.psychologicalStage === '6 - Has team buy-in') {%>
<% } else if (['5 - Personally confident', '6 - Has team buy-in'].includes(me.psychologicalStage)) {%>
<strong>Talk to the team</strong>
<p>Lets get you set up!</p>
<% } %>