quiz/components/Last/StaticTwo.vue
2025-01-17 19:37:44 +05:00

84 lines
1.8 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="static-two">
<div class="static-two__title">
Nikita, youll
<div>also get</div>
</div>
<div class="static-two__blocks">
<div class="static-two__blocks-block">
<div class="static-two__blocks-block__icon">
<img src="/images/last/last_image_one.svg">
</div>
<div class="static-two__blocks-block__text">
Unlimited access to 1000+ meditations, life coaching, stories, music,
& nature sounds
</div>
</div>
<div class="static-two__blocks-block reverse">
<div class="static-two__blocks-block__icon">
<img src="/images/last/last_image_two.svg">
</div>
<div class="static-two__blocks-block__text">
Fall asleep, reduce stress and anxiety and find peace effortlessly whenever you need
</div>
</div>
<div class="static-two__blocks-block">
<div class="static-two__blocks-block__icon">
<img src="/images/last/last_image_three.svg">
</div>
<div class="static-two__blocks-block__text">
Exclusive content from top mindfulness experts, psychologists, and therapists
</div>
</div>
</div>
</div>
</template>
<style scoped lang="scss">
.static-two {
padding: 26px 20px;
&__title {
text-align: center;
font-family: "Geometria";
color: #534E4A;
font-size: 28px;
font-weight: 700;
div {
font-weight: 500;
color: #B87057;
font-size: 32px;
}
}
&__blocks {
margin-top: 32px;
&-block {
display: flex;
align-items: center;
gap: 24px;
&.reverse {
flex-direction: row-reverse;
}
&__text {
color: #302823;
font-family: "Poppins";
font-weight: 400;
line-height: 24px;
}
}
}
}
</style>