Formations.vue 5.6 KB

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