Skip to content

Commit

Permalink
feat(front): eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
1Mateus committed Jun 23, 2023
1 parent 626ef34 commit a2e4a2f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 33 deletions.
26 changes: 17 additions & 9 deletions front/apps/landing/components/landing/Community.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,24 @@ const config = useAppConfig()
:icon="icon"
:key="to"
v-motion
:initial="{ opacity: 0, x: -15,
transition: {
duration: 420,
}, }"
:visibleOnce="{ opacity: 1, x: 0,
transition: {
duration: 420,
}, }"
:initial="{
opacity: 0,
x: -15,
transition: {
duration: 420,
},
}"
:visibleOnce="{
opacity: 1,
x: 0,
transition: {
duration: 420,
},
}"
:delay="150 * i"
v-for="({ icon, title, to }, i) in config.community"
v-for="(
{ icon, title, to }, i
) in config.community"
/>
</div>
</template>
Expand Down
66 changes: 42 additions & 24 deletions front/apps/landing/components/landing/Privacy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,20 @@
2xl:text-[54px]
"
v-motion
:initial="{ opacity: 0, x: -15,
transition: {
duration: 420,
}, }"
:visibleOnce="{ opacity: 1, x: 0,
transition: {
duration: 420,
}, }"
:initial="{
opacity: 0,
x: -15,
transition: {
duration: 420,
},
}"
:visibleOnce="{
opacity: 1,
x: 0,
transition: {
duration: 420,
},
}"
:delay="600"
>
Protect your
Expand All @@ -150,14 +156,20 @@

<p
v-motion
:initial="{ opacity: 0, x: -15,
transition: {
duration: 420,
}, }"
:visibleOnce="{ opacity: 1, x: 0,
transition: {
duration: 420,
}, }"
:initial="{
opacity: 0,
x: -15,
transition: {
duration: 420,
},
}"
:visibleOnce="{
opacity: 1,
x: 0,
transition: {
duration: 420,
},
}"
:delay="700"
class="
text-[#BDBDBD]
Expand Down Expand Up @@ -192,14 +204,20 @@
variant="secondary"
class="lg:h-[32px] xl:h-[39px]"
v-motion
:initial="{ opacity: 0, x: -15,
transition: {
duration: 420,
}, }"
:visibleOnce="{ opacity: 1, x: 0,
transition: {
duration: 420,
}, }"
:initial="{
opacity: 0,
x: -15,
transition: {
duration: 420,
},
}"
:visibleOnce="{
opacity: 1,
x: 0,
transition: {
duration: 420,
},
}"
/>
</div>
</LandingSection>
Expand Down

0 comments on commit a2e4a2f

Please sign in to comment.