Projet.vue 4.3 KB

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