Formations.vue 5.1 KB

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