Formations.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 justify="center" class="card-container">
  43. <v-col cols="12" sm="6" md="3" class="my-2">
  44. <LayoutCardStatCard chiffre="30 <1500" label="élèves" />
  45. </v-col>
  46. <v-col cols="12" sm="6" md="3" class="my-2">
  47. <LayoutCardStatCard chiffre="234" label="Clients" />
  48. </v-col>
  49. <v-col cols="12" sm="6" md="3" class="my-2">
  50. <LayoutCardStatCard chiffre="20304" label="Utilisateurs" />
  51. </v-col>
  52. <v-col cols="12" sm="6" md="3" class="my-2">
  53. <LayoutCardStatCard chiffre="13" label="années d’expériences" />
  54. </v-col>
  55. </v-row>
  56. <v-row>
  57. <LogicielsSchoolCaroussel />
  58. </v-row>
  59. <v-row />
  60. </LayoutContainer>
  61. </div>
  62. </template>
  63. <script setup>
  64. const formations = ref([
  65. {
  66. id: 1,
  67. image: "/images/logiciels/school/reunion.jpg",
  68. overlayClass: "image-overlay1",
  69. sessions: "2",
  70. title: "Formation prise en main du logiciel - En ligne",
  71. description:
  72. "Parce qu’on sait qu’appréhender un nouvel outil peut-être fastidieux et que vous n’avez pas de temps à perdre,...",
  73. buttonText: "S’incrire à une formation",
  74. },
  75. {
  76. id: 2,
  77. image: "/images/logiciels/school/reunion.jpg",
  78. overlayClass: "image-overlay2",
  79. sessions: "10",
  80. title: "Webinaire - Apprendre à piloter son activité",
  81. description:
  82. "Des explications précises sur certains modules du logiciel Opentalent School, c'est possible pour aller encore plus loin...",
  83. buttonText: "S'inscrire au webinaire",
  84. },
  85. ]);
  86. </script>
  87. <style scoped>
  88. .col-details {
  89. margin-right: 6rem;
  90. margin-left: 5rem;
  91. }
  92. .image-wrapper {
  93. position: relative;
  94. }
  95. .formation-btn {
  96. width: 30rem;
  97. height: 4rem;
  98. font-weight: 500;
  99. font-size: 1.5rem;
  100. line-height: 18px;
  101. background: transparent;
  102. color: #eff9fb;
  103. border: 1px solid #eff9fb;
  104. border-radius: 0.5rem;
  105. text-transform: none;
  106. }
  107. .formation-details {
  108. font-weight: 300;
  109. font-size: 1.2rem;
  110. line-height: 1.5rem;
  111. color: #eff9fb;
  112. }
  113. .formation-title {
  114. font-weight: 500;
  115. font-size: 1.8rem;
  116. line-height: 26px;
  117. color: #ffffff;
  118. margin-bottom: 3rem;
  119. }
  120. .session-title {
  121. font-weight: 500;
  122. font-size: 1.8rem;
  123. line-height: 26px;
  124. color: #ffffff;
  125. margin-bottom: 3rem;
  126. }
  127. .reunion-img1 {
  128. width: 80%;
  129. margin-left: 5rem;
  130. height: 100%;
  131. }
  132. .container-green {
  133. background-color: #0e2d32;
  134. padding: 20px;
  135. margin-bottom: 20px;
  136. color: white;
  137. }
  138. .card-container {
  139. margin-bottom: 20px;
  140. margin-left: 10rem;
  141. margin-right: 0rem;
  142. }
  143. </style>