Skip to content

Commit

Permalink
chore: update promo cyber-month
Browse files Browse the repository at this point in the history
  • Loading branch information
duchunter committed Nov 3, 2023
1 parent 09d4394 commit 45c225d
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/renderer/locales/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -5705,8 +5705,8 @@ module.exports = {
}
},
cyber_month: {
title: 'Cyber month',
desc: 'Buy now',
title: '[Last Chance] 82% OFF for Locker Lifetime Premium',
desc: 'Locker is offering the greatest deal of the year: Lifetime Premium package for ONLY $69.99. Pay once, secure and update latest advanced features forever.',
nav: {
btn: 'Get Locker Lifetime'
},
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/locales/vi.js
Original file line number Diff line number Diff line change
Expand Up @@ -5549,8 +5549,8 @@ module.exports = {
}
},
cyber_month: {
title: 'Cyber month',
desc: 'Buy now',
title: '[Last Chance] 82% OFF for Locker Lifetime Premium',
desc: 'Locker is offering the greatest deal of the year: Lifetime Premium package for ONLY $69.99. Pay once, secure and update latest advanced features forever.',
nav: {
btn: 'Get Locker Lifetime'
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,41 @@ import PromoFooter from '~/components/landing/PromoFooter.vue'
export default {
components: { Testimonials, PromoFooter },
layout: 'authenticate',
middleware: ['onlyEng']
middleware: ['onlyEng'],
head () {
const title = this.$t('promo.cyber_month.title')
const desc = this.$t('promo.cyber_month.desc')
return {
title,
meta: [
{
hid: 'og:title',
property: 'og:title',
content: title
},
{
hid: 'twitter:title',
name: 'twitter:title',
content: title
},
{
hid: 'description',
name: 'description',
content: desc
},
{
hid: 'og:description',
property: 'og:description',
content: desc
},
{
hid: 'twitter:description',
name: 'twitter:description',
content: desc
}
]
}
}
}
</script>
<style scoped>
Expand Down

0 comments on commit 45c225d

Please sign in to comment.