Formation.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <AnchoredSection id="webinars">
  3. <LayoutContainer>
  4. <div class="alt-theme pt-6 mt-12">
  5. <v-row>
  6. <LayoutUISubTitle class="mb-6 mt-6">
  7. Nos accompagnements pour aller plus loin
  8. </LayoutUISubTitle>
  9. </v-row>
  10. <v-row class="formation pb-6 align-center">
  11. <v-col
  12. cols="6"
  13. v-for="(formation, index) in formations"
  14. :key="index"
  15. >
  16. <div class="mb-6">
  17. <v-img
  18. :src="formation.image"
  19. class="background-img"
  20. />
  21. </div>
  22. <div>
  23. <h4>
  24. {{ formation.sessions }}
  25. </h4>
  26. <h3>
  27. {{ formation.title }}
  28. </h3>
  29. <p class="details mb-5">
  30. {{ formation.description }}
  31. </p>
  32. <v-btn :to="formation.link">
  33. {{ formation.buttonText }}
  34. </v-btn>
  35. </div>
  36. </v-col>
  37. </v-row>
  38. </div>
  39. <v-row class="align-center">
  40. <LayoutUISubTitle>
  41. Quelques chiffres
  42. </LayoutUISubTitle>
  43. </v-row>
  44. <v-container>
  45. <v-row class="card-container justify-center mb-12">
  46. <v-col
  47. cols="3"
  48. class="d-flex justify-center align-center small-padding"
  49. >
  50. <CommonCardStat
  51. number="140"
  52. text="Structures en réseau"
  53. backgroundColor="#d8050b"
  54. />
  55. </v-col>
  56. <v-col cols="3" class="d-flex justify-center align-center">
  57. <CommonCardStat
  58. number="300 000"
  59. text="Utilisateurs"
  60. backgroundColor="#d8050b"
  61. />
  62. </v-col>
  63. <v-col cols="3" class="d-flex justify-center align-center">
  64. <CommonCardStat
  65. number="12"
  66. text="Années de collaboration"
  67. backgroundColor="#d8050b"
  68. />
  69. </v-col>
  70. </v-row>
  71. </v-container>
  72. <v-row>
  73. <v-col cols="12" class="justify-center">
  74. <span class="cmf-trust-statement">
  75. La plus grande Confédération Musicale de France nous fait confiance
  76. </span>
  77. </v-col>
  78. </v-row>
  79. <v-img
  80. src="/images/logiciels/manager/cmf.jpg"
  81. class="cmf-img mb-6"
  82. />
  83. </LayoutContainer>
  84. </AnchoredSection>
  85. </template>
  86. <script setup>
  87. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  88. const formations = ref([
  89. {
  90. id: 1,
  91. image: "/images/logiciels/school/formation.png",
  92. overlayClass: "image-overlay1",
  93. sessions: "Formation sur-mesure",
  94. title: " Des formations adaptées à votre projet - en ligne",
  95. description:
  96. "Chaque projet de solution de mise en réseau d'organisation nécessite un accompagnement sur-mesure par notre équipe de formation en fonction de vos besoins.",
  97. buttonText: "Formation sur-mesure",
  98. link: "/nous-contacter",
  99. },
  100. {
  101. id: 2,
  102. image: "/images/logiciels/school/webinaire.png",
  103. overlayClass: "image-overlay2",
  104. sessions: "Webinaire CMF Réseau",
  105. title: "Trouvez le webinaire qu'il vous faut ",
  106. description:
  107. "Des explications précises sur certains modules du logiciel Opentalent Manager, c'est possible pour aller encore plus loin... ",
  108. buttonText: "Découvrir nos webinaires ",
  109. link: "/webinaires",
  110. },
  111. ]);
  112. const items = ref([
  113. { src: "/images/reviews/school/review1.svg" },
  114. { src: "/images/reviews/school/review2.png" },
  115. { src: "/images/reviews/school/review3.png" },
  116. { src: "/images/reviews/school/review4.jpeg" },
  117. { src: "/images/reviews/school/review5.jpeg" },
  118. { src: "/images/reviews/school/review6.jpeg" },
  119. ]);
  120. </script>
  121. <style scoped>
  122. .v-row {
  123. max-width: 1600px;
  124. margin: 0 auto;
  125. }
  126. :deep(h2) {
  127. width: 60rem;
  128. }
  129. .background-img {
  130. width: 600px;
  131. height: 400px;
  132. background-size: cover;
  133. background-position: center;
  134. }
  135. .formation {
  136. .v-btn {
  137. font-family: "Barlow", serif;
  138. font-style: normal;
  139. width: 30rem;
  140. height: 4rem;
  141. font-weight: 500;
  142. font-size: 1.5rem;
  143. line-height: 18px;
  144. background: transparent;
  145. color: #eff9fb;
  146. border: 1px solid #eff9fb;
  147. border-radius: 0.5rem;
  148. text-transform: none;
  149. }
  150. h3 {
  151. font-weight: 500;
  152. font-size: 1.8rem;
  153. line-height: 26px;
  154. color: #ffffff;
  155. margin-bottom: 3rem;
  156. }
  157. h4 {
  158. font-weight: 500;
  159. font-size: 1.8rem;
  160. line-height: 26px;
  161. color: #ffffff;
  162. margin-bottom: 3rem;
  163. }
  164. .details {
  165. font-weight: 300;
  166. font-size: 1.2rem;
  167. line-height: 1.5rem;
  168. color: #eff9fb;
  169. }
  170. }
  171. .cmf-img {
  172. width: 30rem;
  173. height: 18rem;
  174. margin-top: 2rem;
  175. margin-right: auto;
  176. margin-left: auto;
  177. }
  178. .cmf-trust-statement {
  179. font-size: 2rem;
  180. text-align: center;
  181. }
  182. </style>