24
1
Fork 0

update promo to be for the vpn

This commit is contained in:
johngruen 2020-03-24 20:58:02 +01:00
parent deec85be14
commit 2a3db78f97
No known key found for this signature in database
GPG Key ID: 78876F1F066C27DC
3 changed files with 8 additions and 5 deletions

View File

@ -59,7 +59,8 @@ if (process.env.NODE_ENV === 'production') {
sentry: Sentry,
user: new User(storage, LIMITS, window.AUTH_CONFIG),
transfer: null,
fileInfo: null
fileInfo: null,
locale: locale()
};
const app = routes(choo({ hash: true }));

View File

@ -8,7 +8,9 @@ function banner(state) {
return; // server side
}
const show =
!state.capabilities.standalone && !state.route.startsWith('/unsupported/');
!state.capabilities.standalone &&
!state.route.startsWith('/unsupported/') &&
state.locale === 'en-US';
if (show) {
return state.cache(Promo, 'promo').render();
}

View File

@ -24,11 +24,11 @@ class Promo extends Component {
alt="Firefox"
/>
<span class="ml-2 sm:ml-4 text-xs sm:text-base">
${this.state.translate('trailheadPromo')}${' '}
${`Like Firefox Send? You'll love our new full-device VPN. `}
<a
class="underline link-blue"
href="http://www.mozilla.org/firefox/accounts/?utm_source=send.firefox.com&utm_medium=banner&utm_campaign=trailhead&utm_content=protect-your-privacy"
>${this.state.translate('learnMore')}</a
href="https://fpn.firefox.com/?utm_source=send.firefox.com&utm_medium=referral&utm_content=Try+Firefox+Private+Network&utm_campaign=top-bar"
>${`Get it today`}</a
>
</span>
</div>