mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Homepage tagline update (#20931)
Updated homepage to include the new tagline that was settled in [this design review](https://us-65885.app.gong.io/call?id=186190266621232138&highlights=%5B%7B%22type%22%3A%22SHARE%22%2C%22from%22%3A2009%2C%22to%22%3A2061%7D%5D). --------- Co-authored-by: Eric <eashaw@sailsjs.com>
This commit is contained in:
parent
e761543262
commit
08d08d5602
3 changed files with 13 additions and 3 deletions
4
website/assets/styles/pages/homepage.less
vendored
4
website/assets/styles/pages/homepage.less
vendored
|
|
@ -60,7 +60,11 @@
|
|||
min-width: 540px;
|
||||
text-align: center;
|
||||
h1 {
|
||||
max-width: 640px;
|
||||
margin-bottom: 16px;
|
||||
&.vm {
|
||||
max-width: unset;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin-bottom: 32px;
|
||||
|
|
|
|||
4
website/views/pages/homepage.ejs
vendored
4
website/views/pages/homepage.ejs
vendored
|
|
@ -6,8 +6,8 @@
|
|||
<div class="d-flex flex-row justify-content-center align-items-start">
|
||||
<%/* Hero text */%>
|
||||
<div purpose="hero-text" class="d-flex flex-column justify-content-center">
|
||||
<h1><%- partial('../partials/primary-tagline.partial.ejs') %></h1>
|
||||
<p>Replace the sprawl with <%= primaryBuyingSituation === 'vm'? 'secure, open-source reporting that works the way you want' : primaryBuyingSituation === 'eo-security'? 'universal, open-source endpoint visibility' : 'secure, open-source device management that works the way you want' %>.</p>
|
||||
<h1 class="mx-auto <%= primaryBuyingSituation%>"><%- partial('../partials/primary-tagline.partial.ejs') %></h1>
|
||||
<p>Replace the sprawl with <%= primaryBuyingSituation === 'vm'? 'secure, open-source reporting that works the way you want' : primaryBuyingSituation === 'eo-security'? 'universal, open-source endpoint visibility' : 'a modern device management platform that works the way you want' %>.</p>
|
||||
<div purpose="button-row" class="d-flex flex-sm-row flex-column justify-content-center align-items-center">
|
||||
<a purpose="cta-button" href="<%= primaryBuyingSituation === 'mdm' ? '/device-management' : primaryBuyingSituation === 'vm' ? '/vulnerability-management' : primaryBuyingSituation === 'eo-security' ? '/endpoint-ops' : primaryBuyingSituation === 'eo-it' ? '/endpoint-ops' : '/device-management' %>">Learn how</a>
|
||||
<animated-arrow-button href="/contact">Talk to us</animated-arrow-button>
|
||||
|
|
|
|||
|
|
@ -1 +1,7 @@
|
|||
<%= typeof primaryBuyingSituation !== 'undefined' ? (primaryBuyingSituation === 'vm' ? 'Focus on vulnerabilities, not vendors' : primaryBuyingSituation === 'eo-security' ? 'Light in every corner' : primaryBuyingSituation === 'eo-it' ? 'Untangle your endpoints' : 'Your easiest MDM migration') : 'Your easiest MDM migration' %>
|
||||
<%=
|
||||
typeof primaryBuyingSituation === 'undefined' ? 'Open-source device management for everyone' // Default (no buying situation)
|
||||
: primaryBuyingSituation === 'vm' ? 'Focus on vulnerabilities, not vendors' // vm
|
||||
: primaryBuyingSituation === 'eo-security' ? 'Light in every corner'// eo-security
|
||||
: primaryBuyingSituation === 'eo-it' ? 'Untangle your endpoints' : // eo-it
|
||||
'Open-source device management for everyone'// mdm
|
||||
%>
|
||||
|
|
|
|||
Loading…
Reference in a new issue