Formations.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <AnchoredSection id="webinars">
  3. <LayoutContainer>
  4. <div class="alt-theme">
  5. <v-container>
  6. <v-row class="center-90">
  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. </LayoutContainer>
  40. </AnchoredSection>
  41. </template>
  42. <script setup lang="ts">
  43. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  44. </script>
  45. <style scoped lang="scss">
  46. .v-container {
  47. padding: 0 !important;
  48. }
  49. .alt-color {
  50. color: var(--on-primary-color-alt);
  51. }
  52. .formation {
  53. .v-img {
  54. width: 600px;
  55. height: 500px;
  56. background-position: center;
  57. background-size: cover;
  58. border-radius: 10%;
  59. }
  60. :deep(.v-img img) {
  61. object-fit: cover;
  62. }
  63. h3 {
  64. font-weight: 500;
  65. font-size: 1.8rem;
  66. line-height: 35px;
  67. color: var(--on-primary-color);
  68. margin-bottom: 1rem;
  69. }
  70. .details {
  71. font-weight: 300;
  72. font-size: 1rem;
  73. line-height: 1.5rem;
  74. color: var(--on-primary-color);
  75. text-align: justify
  76. }
  77. .v-btn {
  78. font-weight: 500;
  79. font-size: 1rem;
  80. line-height: 18px;
  81. background: transparent;
  82. color: var(--on-primary-color);
  83. border: 1px solid;
  84. border-color: var(--on-primary-color);
  85. border-radius: 0.5rem;
  86. width: 90%;
  87. }
  88. }
  89. </style>