poc.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <div id="formations">
  3. <LayoutContainer>
  4. <div class="container-green mt-12">
  5. <v-container>
  6. <v-row>
  7. <LayoutUISubTitle
  8. :iconSize="6"
  9. :iconClasses="iconClasses"
  10. :titleText="'Nos accompagnements sur-mesure'"
  11. title-color="#fff"
  12. />
  13. </v-row>
  14. <v-row class="mb-6">
  15. <v-col
  16. cols="12"
  17. md="6"
  18. v-for="(formation, index) in formations"
  19. :key="index"
  20. >
  21. <v-card class="mb-6">
  22. <div class="image-wrapper">
  23. <v-img :src="formation.image" class="reunion-img1" />
  24. <div :class="formation.overlayClass"></div>
  25. </div>
  26. <v-card-text>
  27. <div class="col-details">
  28. <h4 class="session-title">
  29. {{ formation.sessions }} sessions disponibles
  30. </h4>
  31. <h3 class="formation-title">{{ formation.title }}</h3>
  32. <p class="formation-details">{{ formation.description }}</p>
  33. </div>
  34. </v-card-text>
  35. <v-card-actions>
  36. <v-btn class="formation-btn">{{ formation.buttonText }}</v-btn>
  37. </v-card-actions>
  38. </v-card>
  39. </v-col>
  40. </v-row>
  41. </v-container>
  42. </div>
  43. <v-row>
  44. <v-col cols="4">
  45. <v-row>
  46. <LayoutUISubTitle
  47. :iconSize="6"
  48. :iconClasses="iconClasses"
  49. :titleText="'QUELQUES CHIFFRES'"
  50. />
  51. </v-row>
  52. </v-col>
  53. </v-row>
  54. <v-row class="card-container mb-12">
  55. <v-col
  56. cols="3"
  57. class="d-flex justify-center align-center small-padding"
  58. >
  59. <LayoutCardStat
  60. :chiffre="301500"
  61. text="élèves"
  62. backgroundColor="#c3e5e7"
  63. />
  64. </v-col>
  65. <v-col cols="3" class="d-flex justify-center align-center">
  66. <LayoutCardStat
  67. :chiffre="234"
  68. text="Clients"
  69. backgroundColor="#c3e5e7"
  70. />
  71. </v-col>
  72. <v-col cols="3" class="d-flex justify-center align-center">
  73. <LayoutCardStat
  74. :chiffre="20304"
  75. text="Utilisateurs"
  76. backgroundColor="#c3e5e7"
  77. />
  78. </v-col>
  79. <v-col cols="3" class="d-flex justify-center align-center">
  80. <LayoutCardStat
  81. :chiffre="13"
  82. text="années d'expérience"
  83. backgroundColor="#c3e5e7"
  84. />
  85. </v-col>
  86. </v-row>
  87. <v-row>
  88. <LogicielsSchoolCaroussel />
  89. </v-row>
  90. <v-row />
  91. </LayoutContainer>
  92. </div>
  93. </template>
  94. <script setup>
  95. const formations = ref([
  96. {
  97. id: 1,
  98. image: "/images/logiciels/school/reunion.jpg",
  99. overlayClass: "image-overlay1",
  100. sessions: "2",
  101. title: "Formation prise en main du logiciel - En ligne",
  102. description:
  103. "Parce qu’on sait qu’appréhender un nouvel outil peut-être fastidieux et que vous n’avez pas de temps à perdre,...",
  104. buttonText: "S’incrire à une formation",
  105. },
  106. {
  107. id: 2,
  108. image: "/images/logiciels/school/reunion.jpg",
  109. overlayClass: "image-overlay2",
  110. sessions: "10",
  111. title: "Webinaire - Apprendre à piloter son activité",
  112. description:
  113. "Des explications précises sur certains modules du logiciel Opentalent School, c'est possible pour aller encore plus loin...",
  114. buttonText: "S'inscrire au webinaire",
  115. },
  116. ]);
  117. </script>
  118. <style scoped>
  119. :deep().subtitle {
  120. margin-left: 0rem;
  121. }
  122. .v-card {
  123. border: none !important;
  124. box-shadow: none !important;
  125. background-color: transparent !important;
  126. }
  127. .col-details {
  128. display: flex;
  129. justify-content: center;
  130. flex-direction: column;
  131. }
  132. .image-wrapper {
  133. position: relative;
  134. }
  135. .formation-btn {
  136. width: 30rem;
  137. height: 4rem;
  138. font-weight: 500;
  139. font-size: 1.5rem;
  140. line-height: 18px;
  141. background: transparent;
  142. color: #eff9fb;
  143. border: 1px solid #eff9fb;
  144. border-radius: 0.5rem;
  145. text-transform: none;
  146. }
  147. .formation-details {
  148. font-weight: 300;
  149. font-size: 1.2rem;
  150. line-height: 1.5rem;
  151. color: #eff9fb;
  152. }
  153. .formation-title {
  154. font-weight: 500;
  155. font-size: 1.8rem;
  156. line-height: 26px;
  157. color: #ffffff;
  158. margin-bottom: 3rem;
  159. }
  160. .session-title {
  161. font-weight: 500;
  162. font-size: 1.8rem;
  163. line-height: 26px;
  164. color: #ffffff;
  165. margin-bottom: 3rem;
  166. }
  167. .reunion-img1 {
  168. width: 80%;
  169. height: 100%;
  170. }
  171. .container-green {
  172. background-color: #0e2d32;
  173. padding: 20px;
  174. margin-bottom: 20px;
  175. color: white;
  176. }
  177. .card-container {
  178. margin-bottom: 20px;
  179. margin-left: 10rem;
  180. margin-right: 0rem;
  181. }
  182. </style>