Projet.vue 5.2 KB

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