pricing-plans.vue
6.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<script setup lang="ts">
import sectionTitleIcon from '@images/pages/section-title-icon.png'
import ListArrowIcon from '@images/svg/list-arrow-icon.svg'
import VectorIcon from '@images/svg/vector.svg'
const pricingPlans = [
{
title: 'Basic Plan',
price: 20,
features: [
'Timeline',
'Basic search',
'Live chat widget',
'Email marketing',
'Custom Forms',
'Traffic analytics',
],
supportType: 'Basic',
supportMedium: 'Only Email',
respondTime: 'AVG. Time: 24h',
current: false,
},
{
title: 'Favourite Plan',
price: 51,
features: [
'Everything in basic',
'Timeline with database',
'Advanced search',
'Marketing automation',
'Advanced chatbot',
'Campaign management',
],
supportType: 'Standard',
supportMedium: 'Email & Chat',
respondTime: 'AVG. Time: 6h',
current: true,
},
{
title: 'Standard Plan',
price: 99,
features: [
'Campaign management',
'Timeline with database',
'Fuzzy search',
'A/B testing sanbox',
'Custom permissions',
'Social media automation',
],
supportType: 'Exclusive',
supportMedium: 'Email, Chat & Google Meet',
respondTime: 'Live Support',
current: false,
},
]
</script>
<template>
<VContainer id="pricing-plan">
<div class="pricing-plans d-flex flex-column gap-12">
<!-- 👉 Headers -->
<div class="headers d-flex justify-center flex-column align-center">
<div class="d-flex gap-x-3 mb-6">
<img
:src="sectionTitleIcon"
alt="section title icon"
height="24"
width="25"
>
<div
class="text-body-1 text-high-emphasis font-weight-medium"
style="letter-spacing: 0.15px !important;"
>
PRICING PLANS
</div>
</div>
<div class="mb-2 text-center">
<span
class="text-h4 d-inline-block font-weight-bold"
style="line-height: 2rem;"
>
Tailored pricing plans
</span> <span class="text-h5 d-inline-block">designed for you</span>
</div>
<p
class="text-body-1 font-weight-medium text-center"
style="letter-spacing: 0.15px !important;"
>
All plans include 40+ advanced tools and features to boost your product. <br>
Choose the best plan to fit your needs.
</p>
</div>
<div class="w-75 mx-auto">
<VSlider
max="999"
model-value="458"
color="primary"
thumb-label="always"
class="mt-12"
/>
</div>
<VRow>
<VCol
v-for="(plan, index) in pricingPlans"
:key="index"
>
<VCard
flat
border
:style="plan.current ? 'border:2px solid rgb(var(--v-theme-primary))' : ''"
>
<VCardText class="pa-lg-8 text-no-wrap">
<div class="d-flex flex-column gap-y-8">
<div class="d-flex flex-column gap-y-3">
<h4 class="text-h4 text-center">
{{ plan.title }}
</h4>
<div class="d-flex align-center gap-x-3">
<div class="d-flex">
<h5
class="text-h5"
style="margin-block-start: 0.35rem;"
>
$
</h5>
<div class="plan-price-text">
{{ plan.price }}
</div>
</div>
<div>
<div class="text-body-1 font-weight-medium text-high-emphasis">
Per month
</div>
<div class="text-body-2">
10% off for yearly subscription
</div>
</div>
</div>
<VectorIcon />
</div>
<div class="d-flex flex-column">
<VList class="card-list">
<VListItem
v-for="(item, i) in plan.features"
:key="i"
>
<template #prepend>
<Component
:is="ListArrowIcon"
class="me-3 flip-in-rtl"
/>
</template>
<h5 class="text-h5">
{{ item }}
</h5>
</VListItem>
</VList>
<VDivider class="my-4" />
<div class="d-flex align-center justify-space-between flex-wrap gap-2">
<div>
<div class="text-body-1 font-weight-medium text-high-emphasis mb-1">
{{ plan.supportType }} Support
</div>
<div class="text-body-2">
{{ plan.supportMedium }}
</div>
</div>
<VChip
variant="tonal"
color="primary"
density="comfortable"
class="font-weight-medium"
>
{{ plan.respondTime }}
</VChip>
</div>
</div>
<VBtn
block
:variant="plan.current ? 'elevated' : 'outlined'"
:to="{ name: 'front-pages-payment' }"
>
Get Started
</VBtn>
</div>
</VCardText>
</VCard>
</VCol>
</VRow>
</div>
</VContainer>
</template>
<style lang="scss">
.card-list {
--v-card-list-gap: 12px;
}
.pricing-plans {
margin-block: 5.25rem;
}
</style>
<style lang="scss" scoped>
.plan-price-text {
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
font-size: 48px;
font-weight: 700;
line-height: 56px;
}
</style>