FAQ.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <div id="Aide">
  3. <LayoutContainer>
  4. <div class="container-img">
  5. <div class="overlay" />
  6. <v-row class="mt-12">
  7. <v-col cols="6">
  8. <div class="container-left">
  9. <LayoutUISubTitle
  10. class="mt-12 ml-3"
  11. title-color="#fff"
  12. :iconSize="6"
  13. :iconClasses="iconClasses"
  14. :titleText="' Vous voulez tirer le meilleur de notre logiciel ? '"
  15. />
  16. <h3 class="title-faq mt-6">
  17. Quelle que soit votre demande, notre équipe est à vos côtés pour
  18. vous guider
  19. </h3>
  20. <nuxt-link to="https://ressources.opentalent.fr/" target="_blank">
  21. <v-btn class="btn-faq"> Consulter notre FAQ </v-btn></nuxt-link
  22. >
  23. </div>
  24. </v-col>
  25. <v-col cols="6">
  26. <div class="btn-container">
  27. <nuxt-link to="https://ressources.opentalent.fr/pages/viewpage.action?pageId=75170564" target="_blank">
  28. <v-btn class="btn-faq-tuto">
  29. <div class="container-button">
  30. <v-img src="/images/icons/tuto.svg" class="icon-button" />
  31. <p class="text-btn">
  32. De nombreux articles tutoriels accessibles 24h/24
  33. </p>
  34. </div>
  35. </v-btn>
  36. </nuxt-link>
  37. <nuxt-link
  38. to="https://ressources.opentalent.fr/?contact"
  39. target="_blank"
  40. >
  41. <v-btn class="btn-faq-tuto">
  42. <div class="container-button">
  43. <v-img src="/images/icons/faq.svg" class="icon-button" />
  44. <p class="text-btn">
  45. Support accessible du lundi au vendredi via l’outil en
  46. ligne
  47. </p>
  48. </div>
  49. </v-btn>
  50. </nuxt-link>
  51. </div>
  52. </v-col>
  53. </v-row>
  54. </div>
  55. </LayoutContainer>
  56. </div>
  57. </template>
  58. <script setup></script>
  59. <style scoped>
  60. .v-container {
  61. padding: 0 !important;
  62. }
  63. :deep().subtitle {
  64. width: 10rem !important;
  65. }
  66. .container-left {
  67. margin-left: 6rem;
  68. }
  69. .text-btn {
  70. font-family: "Barlow";
  71. font-style: normal;
  72. font-weight: 500;
  73. font-size: 16px;
  74. line-height: 26px;
  75. color: #f0e8e4;
  76. white-space: normal !important;
  77. text-align: left;
  78. }
  79. .btn-container {
  80. display: flex;
  81. flex-direction: column;
  82. align-items: center;
  83. margin-top: 5rem;
  84. }
  85. .container-button {
  86. display: flex;
  87. flex-direction: row;
  88. align-items: center;
  89. width: 20rem;
  90. height: 3.5rem;
  91. }
  92. .icon-button {
  93. color: #fff;
  94. margin-right: 0.7rem;
  95. margin-left: 1rem;
  96. z-index: 1;
  97. width: 30px;
  98. }
  99. .btn-faq-tuto {
  100. z-index: 1;
  101. width: 23rem;
  102. height: 5.5rem;
  103. margin-left: 3rem;
  104. border-radius: 6px;
  105. font-family: "Barlow";
  106. background: transparent;
  107. color: #fff;
  108. font-style: normal;
  109. font-weight: 500;
  110. font-size: 0.8rem;
  111. line-height: 1rem;
  112. border: 1px white solid;
  113. margin-bottom: 2rem;
  114. text-transform: none !important;
  115. }
  116. .btn-faq {
  117. width: 14rem;
  118. height: 3.5rem;
  119. margin-left: 3rem;
  120. background: #ffffff;
  121. border-radius: 6px;
  122. font-family: "Barlow";
  123. font-style: normal;
  124. font-weight: 500;
  125. font-size: 0.8rem;
  126. z-index: 1;
  127. text-transform: none !important;
  128. line-height: 1rem;
  129. }
  130. .title-faq {
  131. color: #fff;
  132. font-family: "Barlow";
  133. margin-left: 3rem;
  134. margin-right: 15rem;
  135. width: 28rem;
  136. margin-bottom: 3rem;
  137. color: var(--NEUTRAL---BLANC, #fff);
  138. font-size: 30px;
  139. font-style: normal;
  140. font-weight: 400;
  141. }
  142. .container-img {
  143. background-image: url("/images/logiciels/school/faq.jpg");
  144. background-size: cover;
  145. background-position: center 15%;
  146. background-repeat: no-repeat;
  147. height: 37rem;
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: center;
  151. align-items: center;
  152. position: relative;
  153. }
  154. .container-img::after {
  155. content: "";
  156. position: absolute;
  157. top: 0;
  158. left: 0;
  159. width: 100%;
  160. height: 100%;
  161. background: rgba(0, 0, 0, 0.6);
  162. z-index: 1;
  163. }
  164. .v-row {
  165. position: relative;
  166. z-index: 2;
  167. }
  168. </style>