Formations.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <template>
  2. <div id="formations">
  3. <LayoutContainer>
  4. <div class="container-green mt-12">
  5. <v-row>
  6. <div class="d-flex justify-center align-center mt-6">
  7. <v-icon size="10" class="fa-solid fa-circle icon-title" />
  8. <h5 class="subtitle">Nos accompagnements sur-mesure</h5>
  9. </div>
  10. </v-row>
  11. <v-row>
  12. <v-col cols="6">
  13. <div class="image-wrapper">
  14. <v-img
  15. src="/images/logiciels/school/reunion.jpg"
  16. class="reunion-img1"
  17. />
  18. <div class="image-overlay1"></div>
  19. </div>
  20. </v-col>
  21. <v-col cols="6">
  22. <div class="image-wrapper">
  23. <v-img
  24. src="/images/logiciels/school/reunion.jpg"
  25. class="reunion-img1"
  26. />
  27. <div class="image-overlay2"></div>
  28. </div>
  29. </v-col>
  30. </v-row>
  31. <v-row>
  32. <v-col cols="6">
  33. <div class="col-details">
  34. <h4 class="session-title">2 sessions disponibles</h4>
  35. <h3 class="formation-title">
  36. Formation prise en main du logiciel - En ligne
  37. </h3>
  38. <p class="formation-details">
  39. Parce qu’on sait qu’appréhender un nouvel outil peut-être
  40. fastidieux et que vous n’avez pas de temps à perdre,...
  41. </p>
  42. <br />
  43. <!-- <p class="formation-details mb-6">
  44. Lors de votre souscription, nous vous invitons à choisir des
  45. dates de formation qui se déroulera sous 2 jours non
  46. consécutifs. En effet, ce sont des journées riches
  47. d’informations et nous mettons un point d’honneur à vous laisser
  48. digérer cette première journée, vous familiariser davantage avec
  49. vos nouvelles connaissances avant de passer à la seconde.
  50. Destinée aux nouveaux utilisateurs, elle est obligatoire lors de
  51. l'acquisition du logiciel. Elle est également utile lors d'un
  52. changement de personnel dans la structure.
  53. </p> -->
  54. </div>
  55. <v-btn class="formation-btn"> S’incrire à une formation </v-btn>
  56. </v-col>
  57. <v-col cols="6">
  58. <div class="col-details">
  59. <h4 class="session-title">10 sessions disponibles</h4>
  60. <h3 class="formation-title">
  61. Webinaire - Apprendre à piloter son activité
  62. </h3>
  63. <p class="formation-details">
  64. Des explications précises sur certains modules du logiciel
  65. Opentalent School, c'est possible pour aller encore plus loin...
  66. </p>
  67. <br />
  68. <!-- <p class="formation-details mb-6">
  69. Lors de votre souscription, nous vous invitons à choisir des
  70. dates de formation qui se déroulera sous 2 jours non
  71. consécutifs. En effet, ce sont des journées riches
  72. d’informations et nous mettons un point d’honneur à vous laisser
  73. digérer cette première journée, vous familiariser davantage avec
  74. vos nouvelles connaissances avant de passer à la seconde.
  75. Destinée aux nouveaux utilisateurs, elle est obligatoire lors de
  76. l'acquisition du logiciel. Elle est également utile lors d'un
  77. changement de personnel dans la structure.
  78. </p> -->
  79. </div>
  80. <v-btn class="formation-btn"> S'inscrire au webinaire</v-btn>
  81. </v-col>
  82. </v-row>
  83. </div>
  84. <v-row >
  85. <v-col cols="2">
  86. <v-row>
  87. <div class="d-flex justify-center align-center mt-6">
  88. <v-icon size="10" class="fa-solid fa-circle icon-title" />
  89. <h5 class="subtitle">QUELQUES CHIFFRES</h5>
  90. </div>
  91. </v-row>
  92. </v-col>
  93. </v-row>
  94. <v-row class="card-container">
  95. <v-col
  96. cols="3"
  97. class="d-flex justify-center align-center small-padding"
  98. >
  99. <div class="card">
  100. <h3 class="chiffre">30 &lt;1500</h3>
  101. <p>elèves</p>
  102. </div>
  103. </v-col>
  104. <v-col cols="3" class="d-flex justify-center align-center">
  105. <div class="card">
  106. <h3 class="chiffre">234</h3>
  107. <p>Clients</p>
  108. </div>
  109. </v-col>
  110. <v-col cols="3" class="d-flex justify-center align-center">
  111. <div class="card">
  112. <h3 class="chiffre">20304</h3>
  113. <p>Utilisateurs</p>
  114. </div>
  115. </v-col>
  116. <v-col cols="3" class="d-flex justify-center align-center">
  117. <div class="card">
  118. <h3 class="chiffre">13</h3>
  119. <p>années d’expériences</p>
  120. </div>
  121. </v-col>
  122. </v-row>
  123. <v-row>
  124. <LogicielsSchoolCaroussel />
  125. </v-row>
  126. <v-row />
  127. </LayoutContainer>
  128. </div>
  129. </template>
  130. <script setup></script>
  131. <style scoped>
  132. .title {
  133. display: flex;
  134. justify-content: center;
  135. align-items: center;
  136. font-weight: 600;
  137. font-size: 1.5rem;
  138. line-height: 18px;
  139. color: #091d20;
  140. width: 25rem;
  141. margin-left: 2rem;
  142. }
  143. .presentation-title {
  144. color: #071b1f;
  145. font-family: Barlow;
  146. font-size: 1rem;
  147. font-style: normal;
  148. font-weight: 600;
  149. line-height: 15px;
  150. letter-spacing: 1.8px;
  151. text-transform: uppercase;
  152. }
  153. .col-details {
  154. margin-right: 6rem;
  155. }
  156. .image-wrapper {
  157. position: relative;
  158. }
  159. .image-overlay1 {
  160. position: absolute;
  161. top: 0;
  162. left: 0;
  163. width: 80%;
  164. height: 100%;
  165. background-color: rgba(32, 147, 190, 0.17);
  166. margin-left: 5rem;
  167. }
  168. .carousel-button i {
  169. color: black;
  170. }
  171. .carousel-button {
  172. display: flex;
  173. justify-content: center;
  174. align-items: center;
  175. width: 40px;
  176. height: 40px;
  177. background-color: transparent;
  178. border: 2px solid black;
  179. cursor: pointer;
  180. margin-right: 1rem;
  181. margin-top: 1rem;
  182. }
  183. .title {
  184. font-family: "Barlow";
  185. font-style: normal;
  186. font-weight: 600;
  187. font-size: 42px;
  188. line-height: 42px;
  189. text-align: center;
  190. color: #0e2d32;
  191. width: 30rem;
  192. margin-left: auto;
  193. margin-right: auto;
  194. margin-bottom: 2rem;
  195. }
  196. .chiffre {
  197. font-family: "Barlow";
  198. font-style: normal;
  199. font-weight: 600;
  200. font-size: 50px;
  201. line-height: 68px;
  202. text-align: center;
  203. color: #091d20;
  204. margin-bottom: 0.5rem;
  205. }
  206. .formation-btn {
  207. width: 30rem;
  208. height: 4rem;
  209. font-family: "Barlow";
  210. font-style: normal;
  211. font-weight: 500;
  212. font-size: 1.5rem;
  213. line-height: 18px;
  214. background: transparent;
  215. color: #eff9fb;
  216. border: 1px solid #eff9fb;
  217. border-radius: 0.5rem;
  218. margin-left: 7rem;
  219. text-transform: none;
  220. }
  221. .formation-details {
  222. font-family: "Barlow";
  223. font-style: normal;
  224. font-weight: 300;
  225. font-size: 1.2rem;
  226. line-height: 1.5rem;
  227. color: #eff9fb;
  228. margin-left: 7rem;
  229. }
  230. .formation-title {
  231. font-family: "Barlow";
  232. font-style: normal;
  233. font-weight: 500;
  234. font-size: 1.8rem;
  235. line-height: 26px;
  236. color: #ffffff;
  237. margin-left: 7rem;
  238. margin-bottom: 3rem;
  239. }
  240. .session-title {
  241. font-family: "Barlow";
  242. font-style: normal;
  243. font-weight: 500;
  244. font-size: 1.8rem;
  245. line-height: 26px;
  246. color: #ffffff;
  247. margin-left: 7rem;
  248. margin-bottom: 3rem;
  249. }
  250. .reunion-img1 {
  251. width: 80%;
  252. margin-left: 5rem;
  253. height: 100%;
  254. }
  255. .image-overlay2 {
  256. position: absolute;
  257. top: 0;
  258. left: 0;
  259. width: 80%;
  260. height: 100%;
  261. background-color: rgba(32, 147, 190, 0.17);
  262. width: 80%;
  263. margin-left: 5rem;
  264. height: 100%;
  265. }
  266. .reunion-img2 {
  267. width: 80%;
  268. margin-right: 5rem;
  269. height: 100%;
  270. }
  271. .subtitle {
  272. font-family: Barlow;
  273. font-size: 1rem;
  274. font-style: normal;
  275. font-weight: 600;
  276. line-height: 15px;
  277. letter-spacing: 1.8px;
  278. text-transform: uppercase;
  279. margin-bottom: 1rem;
  280. }
  281. .icon-title {
  282. color: rgba(32, 147, 190, 0.6);
  283. font-size: 1.5rem;
  284. margin-right: 0.5rem;
  285. margin-left: 5rem;
  286. margin-bottom: 1rem;
  287. }
  288. .container-green {
  289. background-color: #0e2d32;
  290. padding: 20px;
  291. margin-bottom: 20px;
  292. color: white;
  293. }
  294. .card-container {
  295. margin-top: 20px;
  296. margin-bottom: 20px;
  297. margin-left: 5rem;
  298. margin-right: 5rem;
  299. }
  300. .card {
  301. background: #c3e5e7;
  302. border-radius: 10px;
  303. padding-left: 5rem;
  304. padding-right: 5rem;
  305. padding-top: 3rem;
  306. padding-bottom: 3rem;
  307. width: 36rem;
  308. height: 15rem;
  309. display: flex;
  310. flex-direction: column;
  311. justify-content: center;
  312. align-items: center;
  313. text-align: center;
  314. }
  315. </style>