Projet.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <div id="Contact">
  3. <LayoutContainer>
  4. <v-row>
  5. <v-col cols="3">
  6. <div class="d-flex justify-center align-center">
  7. <v-icon size="10" class="fa-solid fa-circle icon-title"></v-icon>
  8. <h5 class="subtitle-abo">S'abonner dès maintenant</h5>
  9. </div>
  10. </v-col>
  11. <v-col cols="0">
  12. <h5 class="subtitle">
  13. Opentalent Artist, la solution que vous attendiez...
  14. </h5>
  15. <p>
  16. Que vous soyez une petite ou une structure plus conséquente, notre
  17. offre s'adapte à toutes les tailles : le prix de l’abonnement au
  18. logiciel varie en fonction du nombre d'élèves, tout en conservant
  19. l'intégralité des fonctionnalités.
  20. </p>
  21. <h3>
  22. Adhérents CMF ? Et si on vous disait que vous l’aviez déjà ...
  23. </h3>
  24. </v-col>
  25. </v-row>
  26. <v-row class="border-row">
  27. <v-col cols="2">
  28. <v-img
  29. class="logo-cmf"
  30. src="/images/logiciels/school/cmf_logo_orange.png"
  31. ></v-img>
  32. </v-col>
  33. <v-col cols="10">
  34. <div class="cmf-container">
  35. <h5>Adhérents CMF : bénéficiez de conditions privilégiées</h5>
  36. <p>
  37. Si votre établissement d’enseignement artistique est adhérent à la
  38. Confédération Musicale de France (CMF), vous bénéficiez
  39. gratuitement, dans le cadre de votre adhésion, de la version
  40. Opentalent Artist standard et de conditions priviliégiés pour la
  41. version Opentalent School. Contactez nous direcetement ou
  42. contactez votre fédération pour obtenir vos codes d’accès.
  43. </p>
  44. </div>
  45. </v-col>
  46. </v-row>
  47. <v-row>
  48. <v-col cols="4" class="border-col">
  49. <div class="d-flex justify-center align-center">
  50. <v-icon size="35" class="fa-brands fa-react icon"></v-icon>
  51. </div>
  52. <p class="d-flex justify-center align-center details">
  53. Paiement Sécurisé
  54. </p>
  55. </v-col>
  56. <v-col cols="4" class="border-col">
  57. <div class="d-flex justify-center align-center">
  58. <v-icon size="35" class="fa-brands fa-react icon"></v-icon>
  59. </div>
  60. <p class="d-flex justify-center align-center details">
  61. Service clef en main
  62. </p>
  63. </v-col>
  64. <v-col cols="4" class="border-col">
  65. <div class="d-flex justify-center align-center">
  66. <v-icon size="35" class="fa-brands fa-react icon"></v-icon>
  67. </div>
  68. <p class="d-flex justify-center align-center details">
  69. Soutien pour votre activité
  70. </p>
  71. </v-col>
  72. </v-row>
  73. </LayoutContainer>
  74. </div>
  75. </template>
  76. <script setup></script>
  77. <style scoped>
  78. .details {
  79. color: var(--vert-100, #091d20);
  80. margin-right: auto;
  81. margin-left: auto;
  82. width: 8rem;
  83. text-align: center;
  84. margin-top: 0.7rem;
  85. font-size: 1rem;
  86. font-family: "Barlow";
  87. font-weight: 300;
  88. line-height: 14px;
  89. }
  90. .border-col {
  91. border-top: 1px solid #e5e5e5;
  92. border-right: 1px solid #e5e5e5;
  93. height: 8rem;
  94. }
  95. .border-row {
  96. border: 1px solid #e5e5e5;
  97. margin-left: 10rem;
  98. margin-right: 28rem;
  99. margin-bottom: 3rem;
  100. }
  101. .cmf-container {
  102. margin-left: 3rem;
  103. margin-top: 4rem;
  104. margin-bottom: 4rem;
  105. width: 30rem;
  106. }
  107. .logo-cmf {
  108. width: 10rem;
  109. height: 10rem;
  110. margin-top: 3rem;
  111. margin-bottom: 4rem;
  112. margin-left: 3rem;
  113. }
  114. .project-container {
  115. margin-top: 4rem;
  116. margin-bottom: 4rem;
  117. }
  118. .btn-contact {
  119. background: #f4aa2a;
  120. border-radius: 6px;
  121. color: #fff;
  122. font-weight: 600;
  123. font-size: 12px;
  124. line-height: 16px;
  125. letter-spacing: 0.18em;
  126. text-transform: uppercase;
  127. margin-top: 2rem;
  128. margin-bottom: 3rem;
  129. font-family: "Barlow";
  130. font-style: normal;
  131. }
  132. .contact-details {
  133. font-weight: 300;
  134. font-size: 16px;
  135. line-height: 20px;
  136. color: #091d20;
  137. width: 20rem;
  138. font-family: "Barlow";
  139. font-style: normal;
  140. }
  141. .contact {
  142. margin-bottom: 0.5rem;
  143. }
  144. .icon-title {
  145. margin-right: 1rem;
  146. color: #fac20a;
  147. }
  148. .title {
  149. margin-top: 2rem;
  150. margin-bottom: 1rem;
  151. font-weight: 600;
  152. font-size: 42px;
  153. line-height: 42px;
  154. color: #071b1f;
  155. font-family: "Barlow";
  156. font-style: normal;
  157. }
  158. .subtitle-abo {
  159. font-family: "Barlow";
  160. font-style: normal;
  161. font-weight: 500;
  162. font-size: 0.9rem;
  163. }
  164. .subtitle {
  165. font-weight: 400;
  166. font-size: 34px;
  167. line-height: 38px;
  168. color: #071b1f;
  169. margin-bottom: 2rem;
  170. font-family: "Barlow";
  171. font-style: normal;
  172. }
  173. .contact-container {
  174. margin-left: 5rem;
  175. font-weight: 600;
  176. font-size: 12px;
  177. line-height: 16px;
  178. letter-spacing: 0.18em;
  179. text-transform: uppercase;
  180. margin-top: 4rem;
  181. margin-bottom: 2rem;
  182. }
  183. .icon {
  184. margin-top: 1rem;
  185. color: #0e2d32;
  186. }
  187. .femme-casque {
  188. width: 18rem;
  189. }
  190. </style>