Formations.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <AnchoredSection id="webinars">
  3. <LayoutContainer>
  4. <div class="alt-theme pt-6 mt-12">
  5. <v-row>
  6. <LayoutUISubTitle>
  7. Nos accompagnements sur-mesure
  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. <!--
  40. TODO: Déplacer le "Quelques chiffres" dans un composant à part,
  41. voir comment gérer ça avec les anchored sections
  42. -->
  43. <v-row class="align-center">
  44. <v-col cols="12">
  45. <v-row no-gutters>
  46. <LayoutUISubTitle>
  47. Quelques chiffres
  48. </LayoutUISubTitle>
  49. <LayoutUITitle>
  50. Pour les petits comme pour les GRANDS établissements d'enseignement artistique
  51. </LayoutUITitle>
  52. </v-row>
  53. </v-col>
  54. </v-row>
  55. <v-container>
  56. <v-row class="mb-12">
  57. <v-col
  58. cols="12"
  59. lg="3"
  60. class="d-flex justify-center align-center small-padding"
  61. >
  62. <CommonCardStat
  63. number="30 > 1 500"
  64. text="Élèves"
  65. />
  66. </v-col>
  67. <v-col cols="12" lg="3" class="d-flex justify-center align-center">
  68. <CommonCardStat
  69. number="234"
  70. text="Clients"
  71. />
  72. </v-col>
  73. <v-col cols="12" lg="3" class="d-flex justify-center align-center">
  74. <CommonCardStat
  75. number="20 304"
  76. text="Utilisateurs"
  77. />
  78. </v-col>
  79. <v-col cols="12" lg="3" class="d-flex justify-center align-center">
  80. <CommonCardStat
  81. number="13"
  82. text="Années d'expérience"
  83. />
  84. </v-col>
  85. </v-row>
  86. </v-container>
  87. <v-row />
  88. <CommonCarouselClients :items="items" >
  89. <template v-slot:title>
  90. Plus de <span class="alt-color">5000 structures</span> nous font confiance
  91. </template>
  92. </CommonCarouselClients>
  93. </LayoutContainer>
  94. </AnchoredSection>
  95. </template>
  96. <script setup lang="ts">
  97. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  98. import type { Formation } from "~/types/interface";
  99. const formations: Array<Formation> = [
  100. {
  101. image: "/images/logiciels/school/formation.png",
  102. overlayClass: "image-overlay1",
  103. sessions: "3 formations disponibles",
  104. title: "Des formations adaptées à chacun - en ligne",
  105. description:
  106. "Parce qu’on sait qu’appréhender un nouvel outil peut-être fastidieux et que vous n’avez pas de temps à perdre,...",
  107. buttonText: "Découvrir toutes nos formations",
  108. link: "/formations",
  109. },
  110. {
  111. image: "/images/logiciels/school/webinaire.png",
  112. overlayClass: "image-overlay2",
  113. sessions: "Toutes nos sessions",
  114. title: "Trouvez le webinaire qu'il vous faut ",
  115. description:
  116. "Des explications précises sur certains modules du logiciel Opentalent School, c'est possible pour aller encore plus loin...",
  117. buttonText: "Découvrir nos webinaires ",
  118. link: "/webinaires",
  119. },
  120. ];
  121. const items: Array<{ src: string }> = [
  122. { src: "/images/reviews/school/review1.svg" },
  123. { src: "/images/reviews/school/review2.png" },
  124. { src: "/images/reviews/school/review3.png" },
  125. { src: "/images/reviews/school/review4.jpeg" },
  126. { src: "/images/reviews/school/review5.jpeg" },
  127. { src: "/images/reviews/school/review6.jpeg" },
  128. ];
  129. </script>
  130. <style scoped>
  131. .v-row {
  132. max-width: 1600px;
  133. margin: 0 auto;
  134. }
  135. :deep(h2) {
  136. width: 60rem;
  137. }
  138. .background-img {
  139. width: 600px;
  140. height: 400px;
  141. background-size: cover;
  142. background-position: center;
  143. }
  144. .formation {
  145. .v-btn {
  146. font-family: "Barlow", serif;
  147. font-style: normal;
  148. width: 30rem;
  149. height: 4rem;
  150. font-weight: 500;
  151. font-size: 1.5rem;
  152. line-height: 18px;
  153. background: transparent;
  154. color: #eff9fb;
  155. border: 1px solid #eff9fb;
  156. border-radius: 0.5rem;
  157. text-transform: none;
  158. }
  159. h3 {
  160. font-weight: 500;
  161. font-size: 1.8rem;
  162. line-height: 26px;
  163. color: #ffffff;
  164. margin-bottom: 3rem;
  165. }
  166. h4 {
  167. font-weight: 500;
  168. font-size: 1.8rem;
  169. line-height: 26px;
  170. color: #ffffff;
  171. margin-bottom: 3rem;
  172. }
  173. .details {
  174. font-weight: 300;
  175. font-size: 1.2rem;
  176. line-height: 1.5rem;
  177. color: #eff9fb;
  178. }
  179. }
  180. </style>