customers-review.vue
8.77 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<script setup lang="ts">
import { register } from 'swiper/element/bundle'
import { useGenerateImageVariant } from '@/@core/composable/useGenerateImageVariant'
import logo1dark from '@images/front-pages/branding/logo-1-dark.png'
import logo1light from '@images/front-pages/branding/logo-1-light.png'
import logo1 from '@images/front-pages/branding/logo-1.png'
import logo2dark from '@images/front-pages/branding/logo-2-dark.png'
import logo2light from '@images/front-pages/branding/logo-2-light.png'
import logo2 from '@images/front-pages/branding/logo-2.png'
import logo3dark from '@images/front-pages/branding/logo-3-dark.png'
import logo3light from '@images/front-pages/branding/logo-3-light.png'
import logo3 from '@images/front-pages/branding/logo-3.png'
import logo4dark from '@images/front-pages/branding/logo-4-dark.png'
import logo4light from '@images/front-pages/branding/logo-4-light.png'
import logo4 from '@images/front-pages/branding/logo-4.png'
import logo5dark from '@images/front-pages/branding/logo-5-dark.png'
import logo5light from '@images/front-pages/branding/logo-5-light.png'
import sectionTitleIcon from '@images/pages/section-title-icon.png'
register()
const brandLogo1 = useGenerateImageVariant(logo1light, logo1dark)
const brandLogo2 = useGenerateImageVariant(logo2light, logo2dark)
const brandLogo3 = useGenerateImageVariant(logo3light, logo3dark)
const brandLogo4 = useGenerateImageVariant(logo4light, logo4dark)
const brandLogo5 = useGenerateImageVariant(logo5light, logo5dark)
const reviewData = [
{
desc: 'I\'ve never used a theme as versatile and flexible as Materio. It\'s my go to for building dashboard sites on almost any project.',
img: logo1,
rating: 5,
name: 'Eugenia Moore',
position: 'Founder of Hubspot',
},
{
desc: 'Materio is awesome, and I particularly enjoy knowing that if I get stuck on something.',
img: logo2,
rating: 5,
name: 'Tommy haffman',
position: 'Founder of Levis',
},
{
desc: 'This template is superior in so many ways. The code, the design, the regular updates, the support.. It\'s the whole package. Excellent Work.',
img: logo3,
rating: 4,
name: 'Eugenia Moore',
position: 'CTO of Airbnb',
},
{
desc: 'All the requirements for developers have been taken into consideration, so I\'m able to build any interface I want.',
img: logo4,
rating: 5,
name: 'Sara Smith',
position: 'Founder of Continental',
},
{
desc: 'Materio is awesome, and I particularly enjoy knowing that if I get stuck on something.',
img: logo2,
rating: 5,
name: 'Tommy haffman',
position: 'Founder of Levis',
},
{
desc: 'I\'ve never used a theme as versatile and flexible as Materio. It\'s my go to for building dashboard sites on almost any project.',
img: logo1,
rating: 5,
name: 'Eugenia Moore',
position: 'Founder of Hubspot',
},
{
desc: 'Materio is awesome, and I particularly enjoy knowing that if I get stuck on something.',
img: logo2,
rating: 5,
name: 'Tommy haffman',
position: 'Founder of Levis',
},
{
desc: 'This template is superior in so many ways. The code, the design, the regular updates, the support.. It\'s the whole package. Excellent Work.',
img: logo3,
rating: 4,
name: 'Eugenia Moore',
position: 'CTO of Airbnb',
},
{
desc: 'All the requirements for developers have been taken into consideration, so I\'m able to build any interface I want.',
img: logo4,
rating: 5,
name: 'Sara Smith',
position: 'Founder of Continental',
},
{
desc: 'Materio is awesome, and I particularly enjoy knowing that if I get stuck on something.',
img: logo2,
rating: 5,
name: 'Tommy haffman',
position: 'Founder of Levis',
},
]
</script>
<template>
<div class="customer-reviews">
<!-- 👉 Headers -->
<div class="headers d-flex justify-center flex-column align-center mb-8">
<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;"
>
REAL CUSTOMERS REVIEWS
</div>
</div>
<div class="mb-2 text-center">
<span
class="text-h4 d-inline-block font-weight-bold"
style="line-height: 2rem;"
>
Success stories
</span> <span class="text-h5 d-inline-block">from clients</span>
</div>
<p
class="text-body-1 font-weight-medium text-center"
style="letter-spacing: 0.15px !important;"
>
See what our customers have to say about their experience.
</p>
</div>
<div class="swiper-reviews-carousel py-4 mb-6">
<!-- eslint-disable vue/attribute-hyphenation -->
<ClientOnly>
<swiper-container
slides-per-view="1"
space-between="5"
centered-slides="true"
loop="true"
autoplay-delay="3000"
autoplay-disable-on-interaction="false"
events-prefix="swiper-"
:pagination="{
clickable: 'true',
}"
:injectStyles="[
`
.swiper-pagination{
position: static;
margin-block: 1rem;
},
.swiper-pagination-bullet-active{
width: 1rem;
}
`]"
:breakpoints="{
1400: {
slidesPerView: 4,
spaceBetween: 20,
},
992: {
slidesPerView: 3,
spaceBetween: 20,
},
768: {
slidesPerView: 2,
spaceBetween: 20,
},
}"
>
<swiper-slide
v-for="(data, index) in reviewData"
:key="index"
>
<VCard class="h-100 d-flex align-stretch">
<VCardText class="pa-4 pa-sm-6 pa-md-8 d-flex flex-column justify-space-between align-center">
<img
:src="data.img"
style="block-size: 1.75rem;"
>
<div class="text-body-1 text-high-emphasis text-center">
{{ data.desc }}
</div>
<div>
<VRating
:model-value="data.rating"
color="warning"
readonly
/>
</div>
<div class="text-center">
<div class="text-body-1 text-high-emphasis font-weight-medium">
{{ data.name }}
</div>
<div class="text-body-2">
{{ data.position }}
</div>
</div>
</VCardText>
</VCard>
</swiper-slide>
</swiper-container>
</ClientOnly>
</div>
<!-- 👉 Brand-logo Swiper -->
<div class="swiper-brands-carousel mt-4">
<ClientOnly>
<swiper-container
slides-per-view="1"
loop="true"
events-prefix="swiper-"
:breakpoints="{
992: {
slidesPerView: 5,
},
768: {
centeredSlides: true,
slidesPerView: 3,
},
580: {
centeredSlides: true,
slidesPerView: 2,
},
}"
>
<swiper-slide
v-for="(img, index) in [brandLogo1, brandLogo2, brandLogo3, brandLogo4, brandLogo5, brandLogo1, brandLogo2, brandLogo3, brandLogo4, brandLogo5]"
:key="index"
>
<VImg
:src="img"
height="28"
/>
</swiper-slide>
</swiper-container>
</ClientOnly>
</div>
</div>
</template>
<style lang="scss">
@use "swiper/css/bundle";
swiper-container::part(bullet-active) {
border-radius: 6px;
background-color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity));
inline-size: 38px;
}
swiper-container::part(bullet) {
background-color: rgba(var(--v-theme-on-background));
}
swiper-container::part(pagination) {
margin-block: 1.5rem;
}
.swiper-reviews-carousel {
swiper-container {
--swiper-pagination-bullet-width: 10px;
--swiper-pagination-bullet-height: 10px;
--swiper-pagination-bullet-horizontal-gap: 6px;
.swiper {
padding-block-end: 3rem;
}
}
swiper-slide {
block-size: auto;
opacity: 0.5;
padding-block: 1rem;
padding-block-end: 1rem;
transition: all 0.35s ease;
&.swiper-slide-active {
opacity: 1;
padding-block: 0;
}
}
.swiper-pagination {
inset-block: 0 0 !important;
}
}
</style>
<style lang="scss" scoped>
.customer-reviews {
margin-block: 6.25rem;
}
</style>