Formations.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. <CommonCarouselClients :items="items" >
  86. <template v-slot:title>
  87. Plus de <span class="alt-color">3400 structures</span> nous ont déjà adoptées
  88. </template>
  89. </CommonCarouselClients>
  90. </LayoutContainer>
  91. </div>
  92. </template>
  93. <script setup lang="ts">
  94. const items: Ref<Array<{ src: string }>> = ref([
  95. { src: "/images/reviews/artist/review1.jpeg" },
  96. { src: "/images/reviews/artist/review2.jpg" },
  97. { src: "/images/reviews/artist/review3.jpeg" },
  98. { src: "/images/reviews/artist/review4.jpg" },
  99. { src: "/images/reviews/artist/review5.png" },
  100. { src: "/images/reviews/artist/review6.jpeg" },
  101. ]);
  102. </script>
  103. <style scoped lang="scss">
  104. .v-container {
  105. padding: 0 !important;
  106. }
  107. .alt-color {
  108. color: var(--on-primary-color-alt);
  109. }
  110. @media (min-width: 1000px) {
  111. .custom-row {
  112. margin-right: auto;
  113. margin-left: auto;
  114. }
  115. }
  116. .custom-row {
  117. width: 90%;
  118. margin-right: auto;
  119. margin-left: auto;
  120. }
  121. .formation-btn {
  122. font-weight: 500;
  123. font-size: 1rem;
  124. line-height: 18px;
  125. background: transparent;
  126. color: #eff9fb;
  127. border: 1px solid #eff9fb;
  128. border-radius: 0.5rem;
  129. width: 90%;
  130. }
  131. .formation-details {
  132. font-weight: 300;
  133. font-size: 1rem;
  134. line-height: 1.5rem;
  135. color: #eff9fb;
  136. }
  137. .formation-title {
  138. font-weight: 500;
  139. font-size: 1.8rem;
  140. line-height: 35px;
  141. color: #ffffff;
  142. margin-bottom: 1rem;
  143. }
  144. .reunion-img {
  145. width: 600px;
  146. height: 500px;
  147. background-position: center;
  148. background-size: cover;
  149. border-radius: 10%;
  150. background-image: url("/images/logiciels/artist/webinaire.jpg");
  151. }
  152. .container-green {
  153. background-color: #0e2d32;
  154. padding: 20px;
  155. height: auto;
  156. margin-bottom: 2rem;
  157. color: white;
  158. }
  159. .card-container {
  160. margin-left: auto;
  161. margin-right: auto;
  162. display: flex;
  163. justify-content: center;
  164. align-items: center;
  165. }
  166. </style>