Projet.vue 5.0 KB

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