Formations.vue 4.2 KB

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