Reviews.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <template>
  2. <LayoutContainer>
  3. <div :class="smAndDown ? '' : 'container-color'">
  4. <div class="d-flex justify-center align-center flex-column">
  5. <v-icon size="6" class="fa-solid fa-circle icon-title" />
  6. <h6 class="small-title">Avis Clients</h6>
  7. </div>
  8. <h1 class="title-review">C'est vous qui le dites</h1>
  9. </div>
  10. <div v-if="!smAndDown" class="container-green">
  11. <v-row justify="center">
  12. <div class="col-review">
  13. <v-col cols="6">
  14. <v-card class="review-card left mx-auto">
  15. <v-card-title>
  16. <span class="review-name">Patrice CATHELIN</span>
  17. </v-card-title>
  18. <v-card-text>
  19. <p class="description-review">
  20. C'est un logiciel très bien conçu et efficace avec une équipe
  21. ouverte, dynamique et à l'écoute. L’assistance est très
  22. réactive, j'ai toujours eu une réponse rapide à mes besoins,
  23. ce qui est fort appréciable.
  24. </p>
  25. </v-card-text>
  26. <div class="card-footer">
  27. <!-- card footer-->
  28. <small class="status"
  29. >Directeur administratif & pédagogique</small
  30. >
  31. <small class="structure"
  32. >Conservatoire de Musique & de Danse de Sens (78)</small
  33. >
  34. </div>
  35. </v-card>
  36. </v-col>
  37. <v-col cols="6">
  38. <v-card class="review-card right mx-auto">
  39. <!-- <v-avatar size="80" class="profile-img">
  40. <v-img src="/images/reviews/photo1.jpg" />
  41. </v-avatar> -->
  42. <v-card-title>
  43. <span class="review-name">Karine GIRAUD </span>
  44. </v-card-title>
  45. <v-card-text>
  46. <p class="description-review">
  47. Étant présente depuis presque le début, je suis fière d'avoir
  48. vu grandir ce logiciel et d'avoir évoluée avec lui. De plus,
  49. je me suis sentie écoutée lors de mes propositions
  50. d'amélioration, car beaucoup ont vu le jour. Enfin,
  51. l'accompagnement et la réactivité n'ont jamais faibli depuis
  52. toutes ces années
  53. </p>
  54. </v-card-text>
  55. <div class="card-footer">
  56. <small class="status">Secrétaire administrative</small>
  57. <small class="structure">
  58. Association Musicale Sainte Cécile de Lagord (17)</small
  59. >
  60. </div>
  61. </v-card>
  62. </v-col>
  63. </div>
  64. </v-row>
  65. <v-row justify="center">
  66. <div class="col-review">
  67. <!-- v-card with client review -->
  68. <v-col cols="6">
  69. <v-card class="review-card left mx-auto">
  70. <!-- <v-avatar size="80" class="profile-img">
  71. <v-img src="/images/reviews/photo1.jpg" />
  72. </v-avatar> -->
  73. <v-card-title>
  74. <span class="review-name">Laurent BEL</span>
  75. </v-card-title>
  76. <v-card-text>
  77. <p class="description-review">
  78. Logiciel très complet qui permet de faire beaucoup de choses.
  79. J’apprécie particulièrement la réactivité, la bienveillance et
  80. le fait que l’équipe soit à l'écoute pour faire évoluer
  81. l'outil en fonction de nos besoins. Si besoin, la FAQ est
  82. vraiment utile. Elle permet de trouver rapidement une solution
  83. face à un problème rencontré..
  84. </p>
  85. </v-card-text>
  86. <div class="card-footer">
  87. <!-- card footer-->
  88. <small class="status"
  89. >Directeur administratif & pédagogique
  90. </small>
  91. <small class="structure">
  92. École de Musique EPIC Musique en 4 Rivières (74)</small
  93. >
  94. </div>
  95. </v-card>
  96. </v-col>
  97. <v-col cols="6">
  98. <v-card class="review-card right mx-auto">
  99. <v-card-title>
  100. <span class="review-name">Philippe BORY</span>
  101. </v-card-title>
  102. <v-card-text>
  103. <p class="description-review">
  104. Opentalent est une entreprise avec de vraies valeurs humaines,
  105. à l'écoute de chaque structure et qui ne cesse de s'améliorer
  106. pour toujours coller aux besoins de ses clients. Plus qu'une
  107. relation commerciale, c'est pour nous un véritable partenaire
  108. au quotidien.
  109. </p>
  110. </v-card-text>
  111. <div class="card-footer">
  112. <!-- card footer-->
  113. <small class="status">Personnel administratif</small>
  114. <small class="structure">
  115. École d'Arts de Saint-Michel-sur-Orge (91)</small
  116. >
  117. </div>
  118. </v-card>
  119. </v-col>
  120. </div>
  121. </v-row>
  122. <div class="content-review">
  123. <CommonCarouselTrustCompanie :items="items" :title-color="'#fff'"
  124. :carousel-border-color="'#fff'" :carousel-button-color="'#fff'" :icon-color="'#fff'"/>
  125. </div>
  126. </div>
  127. </LayoutContainer>
  128. </template>
  129. <script setup>
  130. import { ref } from "vue";
  131. import { Carousel, Slide } from "vue3-carousel";
  132. import "vue3-carousel/dist/carousel.css";
  133. import { useDisplay } from "vuetify";
  134. const { smAndDown } = useDisplay();
  135. const carousel = ref(null);
  136. const items = ref([
  137. { src: "/images/reviews/school/review1.svg" },
  138. { src: "/images/reviews/school/review2.png" },
  139. { src: "/images/reviews/school/review3.png" },
  140. { src: "/images/reviews/school/review4.jpeg" },
  141. { src: "/images/reviews/school/review5.jpeg" },
  142. { src: "/images/reviews/school/review6.jpeg" },
  143. ]);
  144. </script>
  145. <style scoped>
  146. .v-container{
  147. padding: 0 !important;
  148. }
  149. .content-review {
  150. margin-top: -7rem;
  151. }
  152. .card-footer {
  153. display: flex;
  154. flex-direction: column;
  155. margin-top: 1rem;
  156. }
  157. .col-review {
  158. display: flex;
  159. justify-content: center;
  160. align-items: center;
  161. }
  162. .left {
  163. bottom: 12rem;
  164. position: relative;
  165. }
  166. .right {
  167. position: relative;
  168. bottom: 7rem;
  169. }
  170. .icon-title {
  171. margin-top: 1rem;
  172. color: #64afb7;
  173. }
  174. .carousel-button i,
  175. .carousel-button-sm i {
  176. color: #ffffff;
  177. }
  178. .carousel-button {
  179. display: flex;
  180. justify-content: center;
  181. align-items: center;
  182. width: 5rem;
  183. height: 5rem;
  184. margin-left: 1.5rem;
  185. background-color: transparent;
  186. border: 2px solid #ffffff;
  187. cursor: pointer;
  188. margin-right: 1rem;
  189. margin-top: 1rem;
  190. }
  191. .container-green {
  192. background-color: #0e2d32;
  193. height: 57rem
  194. }
  195. .status {
  196. position: absolute;
  197. bottom:0;
  198. right: 0;
  199. margin-top: 1rem;
  200. font-weight: 600;
  201. font-size: 0.7rem;
  202. line-height: 15px;
  203. width: 90%;
  204. display: flex;
  205. align-items: center;
  206. letter-spacing: 0.18em;
  207. text-transform: uppercase;
  208. margin-bottom: 2rem;
  209. color: #071b1f;
  210. }
  211. .structure {
  212. position: absolute;
  213. bottom: 0;
  214. right: 0;
  215. font-weight: 600;
  216. font-size: 0.8rem;
  217. width: 90%;
  218. display: flex;
  219. align-items: center;
  220. color: #071b1f;
  221. margin-bottom: 1rem;
  222. }
  223. .description-review {
  224. text-align: justify !important;
  225. height: 10rem;
  226. font-size: 1rem;
  227. line-height: 1.5rem;
  228. color: #071b1f;
  229. margin-left: 1rem;
  230. margin-right: 1rem;
  231. margin-bottom: 1rem;
  232. line-height: 20px;
  233. }
  234. .container-color {
  235. background: #f8f8f8;
  236. height: 22rem;
  237. }
  238. .review-card {
  239. width: 21rem;
  240. min-height: 20rem;
  241. max-height: 23rem;
  242. margin-bottom: .9rem;
  243. }
  244. .review-name {
  245. margin-left: 1rem;
  246. font-weight: 500;
  247. font-family: "Barlow";
  248. font-style: normal;
  249. font-size: 1.5rem;
  250. color: #9edbdd;
  251. }
  252. .small-title {
  253. font-size: 1rem;
  254. line-height: 1rem;
  255. margin-top: 1rem;
  256. text-align: center;
  257. letter-spacing: 2.16px;
  258. text-transform: uppercase;
  259. margin-bottom: 0.5rem;
  260. }
  261. .title-review {
  262. font-size: 2rem;
  263. line-height: 42px;
  264. text-align: center;
  265. color: #071b1f;
  266. }
  267. </style>