Formations.vue 4.4 KB

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