diff --git a/website/assets/js/pages/homepage.page.js b/website/assets/js/pages/homepage.page.js index 0dc9751a2d..67f74322c8 100644 --- a/website/assets/js/pages/homepage.page.js +++ b/website/assets/js/pages/homepage.page.js @@ -24,14 +24,13 @@ parasails.registerPage('homepage', { // ║ ║╠╣ ║╣ ║ ╚╦╝║ ║ ║╣ // ╩═╝╩╚ ╚═╝╚═╝ ╩ ╚═╝╩═╝╚═╝ beforeMount: function() { - //… if(window.location.hash === '#unsubscribed'){ this.modal = 'unsubscribed'; window.location.hash = ''; } }, mounted: async function() { - this.animateHeroTicker(); + // this.animateHeroTicker(); if(['mdm', 'eo-it', undefined].includes(this.primaryBuyingSituation)){ this.animateBottomTicker(); } diff --git a/website/assets/styles/pages/homepage.less b/website/assets/styles/pages/homepage.less index 745d7b5a65..6445dc9489 100644 --- a/website/assets/styles/pages/homepage.less +++ b/website/assets/styles/pages/homepage.less @@ -52,7 +52,6 @@ padding-left: 32px; padding-bottom: 82px; max-width: 1200px; - height: 420px; } [purpose='ticker-container'] { overflow: hidden; @@ -88,7 +87,13 @@ max-width: 640px; margin-bottom: 16px; &.vm { - max-width: unset; + max-width: 420px; + } + &.eo-it { + max-width: 420px; + } + &.eo-security { + max-width: 438px; } } p { diff --git a/website/views/pages/homepage.ejs b/website/views/pages/homepage.ejs index 737c73d3aa..13b9982c18 100644 --- a/website/views/pages/homepage.ejs +++ b/website/views/pages/homepage.ejs @@ -6,6 +6,8 @@
<%/* Hero text */%>
+

<%- partial('../partials/primary-tagline.partial.ejs') %>

+ <% /*

One agent for
every @@ -37,6 +39,7 @@

+ */ %>

Replace the sprawl with <%= primaryBuyingSituation === 'vm'? 'secure, open-source reporting that works the way you want' : primaryBuyingSituation === 'eo-security'? 'open-source telemetry that works the way you want' : 'lightning fast device management that lets employees see what\'s going on' %>.

Learn how diff --git a/website/views/partials/primary-tagline.partial.ejs b/website/views/partials/primary-tagline.partial.ejs index 2e549fb754..bb04b6a2dc 100644 --- a/website/views/partials/primary-tagline.partial.ejs +++ b/website/views/partials/primary-tagline.partial.ejs @@ -1,6 +1,7 @@ <%= - (typeof primaryBuyingSituation !== 'undefined' && primaryBuyingSituation === 'vm') ? 'Focus on vulnerabilities, not vendors' // vm - : (typeof primaryBuyingSituation !== 'undefined' && primaryBuyingSituation === 'eo-security') ? 'Easily get security data'// eo-security - : (typeof primaryBuyingSituation !== 'undefined' && primaryBuyingSituation === 'eo-it') ? 'One system for every platform' : // eo-it - 'One system for every OS'// mdm or default (no buying situation) + typeof primaryBuyingSituation === 'undefined' ? 'Open device management for everyone' // Default (no buying situation) + : primaryBuyingSituation === 'vm' ? 'Focus on vulnerabilities, not vendors' // vm + : primaryBuyingSituation === 'eo-security' ? 'Easily get security data'// eo-security + : primaryBuyingSituation === 'eo-it' ? 'Untangle your endpoints' : // eo-it + 'Open device management for everyone'// mdm %>