Formations.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <div id="Formations">
  3. <LayoutContainer>
  4. <div class="container-green mt-12">
  5. <v-row>
  6. <LayoutUISubTitle
  7. title-color="#fff"
  8. :iconSize="6"
  9. :iconClasses="iconClasses"
  10. :titleText="'Pour aller plus loin'"
  11. :iconColor="'#fac20a'"
  12. />
  13. </v-row>
  14. <v-container>
  15. <v-row class="mt-12" no-gutters>
  16. <v-col cols="12" lg="6" md="6" sm="6"
  17. >
  18. <div class="reunion-img"></div>
  19. </v-col>
  20. <v-col cols="12" lg="6" md="6" sm="6"
  21. >
  22. <h3 class="formation-title">
  23. Webinaire de découverte - Nouveaux utilisateurs
  24. </h3>
  25. <p class="formation-details mb-6">
  26. Rejoignez notre webinaire, spécialement conçu pour les
  27. professionnels du secteur culturel, orchestres, chorales,
  28. compagnies de danse, ainsi que les troupes de théâtre et de
  29. cirque. Cette session interactive vous offre une occasion unique
  30. de vous immerger dans les fonctionnalités de notre logiciel, de
  31. comprendre ses avantages distinctifs et d'explorer les diverses
  32. versions disponibles. Ne manquez pas cette chance de simplifiez
  33. votre gestion et de faire évoluer votre pratique artistique avec
  34. nos solutions technologiques innovantes !
  35. </p>
  36. <nuxt-link to="/webinaires">
  37. <v-btn class="formation-btn mt-12"> S'inscrire à nos webinaires</v-btn>
  38. </nuxt-link>
  39. </v-col>
  40. </v-row>
  41. </v-container>
  42. </div>
  43. <v-row>
  44. <LayoutUISubTitle
  45. :iconSize="6"
  46. :iconClasses="iconClasses"
  47. :titleText="' Quelques chiffres'"
  48. />
  49. </v-row>
  50. <v-row class="card-container mb-12">
  51. <v-col
  52. cols="3"
  53. class="d-flex justify-center align-center small-padding"
  54. >
  55. <LayoutCardStat
  56. :chiffre="'18 4634'"
  57. text="utilisateurs"
  58. backgroundColor="#fac20a"
  59. />
  60. </v-col>
  61. <v-col cols="3" class="d-flex justify-center align-center">
  62. <LayoutCardStat
  63. :chiffre="'3 424'"
  64. text="structures"
  65. backgroundColor="#fac20a"
  66. />
  67. </v-col>
  68. <v-col cols="3" class="d-flex justify-center align-center">
  69. <LayoutCardStat
  70. :chiffre="13"
  71. text="années d'expérience"
  72. backgroundColor="#fac20a"
  73. />
  74. </v-col>
  75. </v-row>
  76. <v-row />
  77. <v-row />
  78. <LayoutCarouselTrustCompanie :items="items" :trustMessage="'nous ont déjà adoptées'" :structureCount="'3400 structures'" />
  79. </LayoutContainer>
  80. </div>
  81. </template>
  82. <script setup>
  83. const items = ref([
  84. { src: "/images/reviews/artist/review1.jpeg" },
  85. { src: "/images/reviews/artist/review2.jpg" },
  86. { src: "/images/reviews/artist/review3.jpeg" },
  87. { src: "/images/reviews/artist/review4.jpg" },
  88. { src: "/images/reviews/artist/review5.png" },
  89. { src: "/images/reviews/artist/review6.jpeg" },
  90. ]);
  91. </script>
  92. <style scoped>
  93. .v-row{
  94. max-width: 1600px;
  95. margin-right: auto;
  96. margin-left: auto;
  97. }
  98. .carousel-button i {
  99. color: black;
  100. }
  101. .carousel-button {
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. width: 40px;
  106. height: 40px;
  107. background-color: transparent;
  108. border: 2px solid black;
  109. cursor: pointer;
  110. margin-right: 1rem;
  111. margin-top: 1rem;
  112. }
  113. .title {
  114. font-family: "Barlow";
  115. font-style: normal;
  116. font-weight: 600;
  117. font-size: 42px;
  118. line-height: 42px;
  119. text-align: center;
  120. color: #0e2d32;
  121. width: 30rem;
  122. margin-left: auto;
  123. margin-right: auto;
  124. margin-bottom: 2rem;
  125. }
  126. .chiffre {
  127. font-family: "Barlow";
  128. font-style: normal;
  129. font-weight: 600;
  130. font-size: 60px;
  131. line-height: 68px;
  132. text-align: center;
  133. color: #091d20;
  134. margin-bottom: 0.5rem;
  135. }
  136. .formation-btn {
  137. font-family: "Barlow";
  138. font-style: normal;
  139. font-weight: 500;
  140. font-size: 1rem;
  141. line-height: 18px;
  142. background: transparent;
  143. color: #eff9fb;
  144. border: 1px solid #eff9fb;
  145. border-radius: 0.5rem;
  146. margin-left: 7rem;
  147. }
  148. .formation-details {
  149. font-family: "Barlow";
  150. font-style: normal;
  151. font-weight: 300;
  152. font-size: 1rem;
  153. line-height: 1.5rem;
  154. color: #eff9fb;
  155. margin-left: 7rem;
  156. }
  157. .formation-title {
  158. font-family: "Barlow";
  159. font-style: normal;
  160. font-weight: 500;
  161. font-size: 1.8rem;
  162. line-height: 26px;
  163. color: #ffffff;
  164. margin-left: 7rem;
  165. margin-bottom: 3rem;
  166. }
  167. .reunion-img {
  168. width: 600px;
  169. height: 500px;
  170. background-position: center;
  171. background-size: cover;
  172. border-radius: 10%;
  173. background-image: url("/images/logiciels/artist/webinaire.jpg");
  174. }
  175. .subtitle {
  176. font-family: "Barlow";
  177. font-weight: 500;
  178. font-size: 0.9rem;
  179. line-height: 1.2rem;
  180. font-weight: 600;
  181. line-height: 16px;
  182. display: flex;
  183. align-items: center;
  184. letter-spacing: 0.18em;
  185. text-transform: uppercase;
  186. }
  187. .icon-title {
  188. color: #fac20a;
  189. font-size: 1.5rem;
  190. margin-right: 0.5rem;
  191. margin-left: 5rem;
  192. }
  193. .container-green {
  194. background-color: #0e2d32;
  195. padding: 20px;
  196. height: auto;
  197. margin-bottom: 2rem;
  198. color: white;
  199. }
  200. .card-container {
  201. margin-left: auto;
  202. margin-right: auto;
  203. display: flex;
  204. justify-content: center;
  205. align-items: center;
  206. }
  207. .card {
  208. background: #fac20a;
  209. border-radius: 10px;
  210. width: 36rem;
  211. height: 15rem;
  212. display: flex;
  213. flex-direction: column;
  214. justify-content: center;
  215. align-items: center;
  216. text-align: center;
  217. }
  218. </style>