Formations.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <template>
  2. <div id="Webinaires">
  3. <LayoutContainer>
  4. <div class="container-green 2">
  5. <v-container>
  6. <v-row class="custom-row">
  7. <LayoutUISubTitle
  8. class="mt-12"
  9. title-color="#fff"
  10. :iconSize="6"
  11. :iconClasses="iconClasses"
  12. :titleText="'Pour aller plus loin'"
  13. :iconColor="'#fac20a'"
  14. />
  15. </v-row>
  16. <v-row class="mt-12 align-center" no-gutters>
  17. <v-col cols="12" lg="6" md="6" sm="6">
  18. <div class="reunion-img mb-12"></div>
  19. </v-col>
  20. <v-col cols="12" lg="6" md="6" sm="6">
  21. <h3 class="formation-title ml-6 mr-12">
  22. Webinaire - Partez à la découverte du logiciel Opentalent Artist
  23. </h3>
  24. <p
  25. class="formation-details ml-6 mr-12"
  26. style="text-align: justify"
  27. >
  28. Rejoignez notre webinaire, spécialement conçu pour les
  29. professionnels du secteur culturel, orchestres, chorales,
  30. compagnies de danse, ainsi que les troupes de théâtre et de
  31. cirque. Cette session interactive vous offre une occasion unique
  32. de vous immerger dans les fonctionnalités de notre logiciel, de
  33. comprendre ses avantages distinctifs et d'explorer les diverses
  34. versions disponibles. Ne manquez pas cette chance de simplifiez
  35. votre gestion et de faire évoluer votre pratique artistique avec
  36. nos solutions technologiques innovantes !
  37. </p>
  38. <nuxt-link to="/webinaires">
  39. <v-btn class="formation-btn mt-12 ml-6">
  40. S'inscrire à nos webinaires</v-btn
  41. >
  42. </nuxt-link>
  43. </v-col>
  44. </v-row>
  45. </v-container>
  46. </div>
  47. <v-row class="custom-row">
  48. <LayoutUISubTitle
  49. :iconSize="6"
  50. :iconClasses="iconClasses"
  51. :titleText="' Quelques chiffres'"
  52. class="mb-12"
  53. />
  54. </v-row>
  55. <v-container>
  56. <v-row class="card-container mb-12">
  57. <v-col
  58. cols="3"
  59. class="d-flex justify-center align-center small-padding"
  60. >
  61. <CommonCardStat
  62. :chiffre="'184 634'"
  63. text="Utilisateurs"
  64. backgroundColor="#fac20a"
  65. />
  66. </v-col>
  67. <v-col cols="3" class="d-flex justify-center align-center">
  68. <CommonCardStat
  69. :chiffre="'3 424'"
  70. text="Structures"
  71. backgroundColor="#fac20a"
  72. />
  73. </v-col>
  74. <v-col cols="3" class="d-flex justify-center align-center">
  75. <CommonCardStat
  76. :chiffre="13"
  77. text="Années d'expérience"
  78. backgroundColor="#fac20a"
  79. />
  80. </v-col>
  81. </v-row>
  82. </v-container>
  83. <v-row />
  84. <v-row />
  85. <CommonCarouselTrustCompanie
  86. :items="items"
  87. :trustMessage="'nous ont déjà adoptées'"
  88. :structureCount="'3400 structures'"
  89. :structureCountColor="'#fac20a'"
  90. />
  91. </LayoutContainer>
  92. </div>
  93. </template>
  94. <script setup>
  95. const items = ref([
  96. { src: "/images/reviews/artist/review1.jpeg" },
  97. { src: "/images/reviews/artist/review2.jpg" },
  98. { src: "/images/reviews/artist/review3.jpeg" },
  99. { src: "/images/reviews/artist/review4.jpg" },
  100. { src: "/images/reviews/artist/review5.png" },
  101. { src: "/images/reviews/artist/review6.jpeg" },
  102. ]);
  103. </script>
  104. <style scoped>
  105. .v-container {
  106. padding: 0 !important;
  107. }
  108. @media (min-width: 1000px) {
  109. .custom-row {
  110. margin-right: auto;
  111. margin-left: auto;
  112. }
  113. }
  114. .custom-row {
  115. width: 90%;
  116. margin-right: auto;
  117. margin-left: auto;
  118. }
  119. .formation-btn {
  120. font-weight: 500;
  121. font-size: 1rem;
  122. line-height: 18px;
  123. background: transparent;
  124. color: #eff9fb;
  125. border: 1px solid #eff9fb;
  126. border-radius: 0.5rem;
  127. width: 90%;
  128. }
  129. .formation-details {
  130. font-weight: 300;
  131. font-size: 1rem;
  132. line-height: 1.5rem;
  133. color: #eff9fb;
  134. }
  135. .formation-title {
  136. font-weight: 500;
  137. font-size: 1.8rem;
  138. line-height: 35px;
  139. color: #ffffff;
  140. margin-bottom: 1rem;
  141. }
  142. .reunion-img {
  143. width: 600px;
  144. height: 500px;
  145. background-position: center;
  146. background-size: cover;
  147. border-radius: 10%;
  148. background-image: url("/images/logiciels/artist/webinaire.jpg");
  149. }
  150. .container-green {
  151. background-color: #0e2d32;
  152. padding: 20px;
  153. height: auto;
  154. margin-bottom: 2rem;
  155. color: white;
  156. }
  157. .card-container {
  158. margin-left: auto;
  159. margin-right: auto;
  160. display: flex;
  161. justify-content: center;
  162. align-items: center;
  163. }
  164. </style>