Formations.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <v-row class="custom-row">
  40. <LayoutUISubTitle class="mb-12">
  41. Quelques chiffres
  42. </LayoutUISubTitle>
  43. </v-row>
  44. <v-container>
  45. <v-row class="card-container mb-12">
  46. <v-col
  47. cols="3"
  48. class="d-flex justify-center align-center small-padding"
  49. >
  50. <CommonCardStat
  51. number="184 634"
  52. text="Utilisateurs"
  53. />
  54. </v-col>
  55. <v-col cols="3" class="d-flex justify-center align-center">
  56. <CommonCardStat
  57. number="3 424"
  58. text="Structures"
  59. />
  60. </v-col>
  61. <v-col cols="3" class="d-flex justify-center align-center">
  62. <CommonCardStat
  63. number="13"
  64. text="Années d'expérience"
  65. />
  66. </v-col>
  67. </v-row>
  68. </v-container>
  69. <v-row />
  70. <v-row />
  71. <CommonCarouselClients :items="items" >
  72. <template v-slot:title>
  73. Plus de <span class="alt-color">3400 structures</span> nous ont déjà adoptées
  74. </template>
  75. </CommonCarouselClients>
  76. </LayoutContainer>
  77. </AnchoredSection>
  78. </template>
  79. <script setup lang="ts">
  80. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  81. const items: Ref<Array<{ src: string }>> = ref([
  82. { src: "/images/reviews/artist/review1.jpeg" },
  83. { src: "/images/reviews/artist/review2.jpg" },
  84. { src: "/images/reviews/artist/review3.jpeg" },
  85. { src: "/images/reviews/artist/review4.jpg" },
  86. { src: "/images/reviews/artist/review5.png" },
  87. { src: "/images/reviews/artist/review6.jpeg" },
  88. ]);
  89. </script>
  90. <style scoped lang="scss">
  91. .v-container {
  92. padding: 0 !important;
  93. }
  94. .alt-color {
  95. color: var(--on-primary-color-alt);
  96. }
  97. .custom-row {
  98. width: 90%;
  99. margin-right: auto;
  100. margin-left: auto;
  101. }
  102. .formation {
  103. .v-img {
  104. width: 600px;
  105. height: 500px;
  106. background-position: center;
  107. background-size: cover;
  108. border-radius: 10%;
  109. }
  110. :deep(.v-img img) {
  111. object-fit: cover;
  112. }
  113. h3 {
  114. font-weight: 500;
  115. font-size: 1.8rem;
  116. line-height: 35px;
  117. color: #ffffff;
  118. margin-bottom: 1rem;
  119. }
  120. .details {
  121. font-weight: 300;
  122. font-size: 1rem;
  123. line-height: 1.5rem;
  124. color: #eff9fb;
  125. text-align: justify
  126. }
  127. .v-btn {
  128. font-weight: 500;
  129. font-size: 1rem;
  130. line-height: 18px;
  131. background: transparent;
  132. color: #eff9fb;
  133. border: 1px solid #eff9fb;
  134. border-radius: 0.5rem;
  135. width: 90%;
  136. }
  137. }
  138. .card-container {
  139. margin-left: auto;
  140. margin-right: auto;
  141. display: flex;
  142. justify-content: center;
  143. align-items: center;
  144. }
  145. </style>