Skip to content

Commit

Permalink
style: update
Browse files Browse the repository at this point in the history
  • Loading branch information
duchunter committed Nov 1, 2023
1 parent 0d30101 commit cb82aa3
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 33 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 2 additions & 18 deletions src/renderer/locales/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -5756,7 +5756,8 @@ module.exports = {
btn: 'Get it now'
},
features: {
title: 'Locker - All-in-one password manager',
title: 'A Secure and Seamless Internet Experience',
link: 'Discover all the features of Locker',
items: [
{
title: 'Unlimited data storage',
Expand Down Expand Up @@ -5784,23 +5785,6 @@ module.exports = {
}
],
btn: 'Get Promotion Now'
},
smooth_life: {
title: 'Smooth out your digital life',
items: [
{
title: 'Auto Device Sync',
desc: 'Seamlessly access your data across all devices with automatic synchronization.'
},
{
title: 'Effortless Management',
desc: 'Create, save, and autofill login details, addresses, credit cards, and more for a hassle-free digital life.'
},
{
title: 'Item Recovery',
desc: 'Easily restore recently deleted items or previous versions to keep your data intact and organized.'
}
]
}
}
},
Expand Down
41 changes: 26 additions & 15 deletions src/renderer/pages/promo/cyber-month.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,34 +139,45 @@
<!-- Security end -->

<!-- Features -->
<div class="full-width px-4 py-12">
<h2 class="font-bold landing-font-38 text-center mb-16">
{{ $t('promo.cyber_month.features.title') }}
</h2>
<div class="p-12">
<div class="text-center mb-16">
<h2 class="font-semibold landing-font-38 mb-2">
{{ $t('promo.cyber_month.features.title') }}
</h2>
<a
:href="
locale === 'vi'
? 'https://locker.io/vi/features'
: 'https://locker.io/features'
"
target="_blank"
class="text-primary font-semibold landing-font-18"
>
{{ $t('promo.cyber_month.features.link') }}
<i class="el-icon-right" />
</a>
</div>

<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-16">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-16 mb-16">
<div
v-for="(item, index) in $t('promo.cyber_month.features.items')"
:key="index"
class="bg-black-300 px-12 pt-9 flex flex-col justify-between"
>
<div class="mb-4 text-center md:text-left">
<h3 class="font-semibold text-primary landing-font-24 mb-2">
{{ item.title }}
</h3>
<p class="landing-font-18">
{{ item.desc }}
</p>
</div>
<img
:src="
require(`~/assets/images/pages/promo/cyber-month/feature-${
index + 1
}.png`)
"
:alt="item.title"
class="w-full h-auto"
class="w-full h-auto mb-6"
>
<h3 class="font-semibold text-primary landing-font-18 mb-3">
{{ item.title }}
</h3>
<p class="landing-font-16">
{{ item.desc }}
</p>
</div>
</div>

Expand Down

0 comments on commit cb82aa3

Please sign in to comment.