Help.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="mt-12">
  4. <v-container>
  5. <div :class="!mdAndDown ? 'help-container' : 'help-container-md'" >
  6. <v-col cols="12" lg="6" md="12" sm="12">
  7. <v-img :class="!mdAndDown ? 'help-img' : 'help-img-md'" src="/images/Home_logiciel/Opentalent_a_votre_service.png" />
  8. </v-col>
  9. <v-col cols="12" lg="6" md="12" sm="12">
  10. <h4 :class="!mdAndDown ? 'subtitle-team ml-10': 'subtitle-team-md'">
  11. Notre équipe est à vos côtés
  12. pour vous guider
  13. </h4>
  14. <p :class="!mdAndDown ? 'need-help ml-10' : 'need-help-md'">
  15. Besoin d’aide ? <br />
  16. Vous souhaitez en savoir plus sur nos solutions ou vous avez
  17. besoin d'assistance sur l'utilisation de l'un de nos logiciels ?
  18. </p>
  19. <v-row>
  20. <ul :class="!mdAndDown ? 'details ml-10' : 'details-md'">
  21. <li class="detail-item">
  22. Ouvert du lundi au vendredi de 8h15 à 17h45
  23. </li>
  24. <li class="detail-item">Support joignable par mail</li>
  25. <li class="detail-item">
  26. De nombreux articles tutoriels accessibles 24h/24
  27. </li>
  28. </ul>
  29. </v-row>
  30. <v-row class="ml-10">
  31. <a href="https://ressources.opentalent.fr/" target="_blank">
  32. <v-btn :class="!mdAndDown ? 'button-faq' : 'button-faq-md '">Consulter la FAQ</v-btn>
  33. </a>
  34. </v-row>
  35. </v-col>
  36. </div>
  37. </v-container>
  38. </v-row>
  39. </LayoutContainer>
  40. </template>
  41. <script setup>
  42. import "vue3-carousel/dist/carousel.css";
  43. import { useDisplay } from "vuetify";
  44. const { smAndDown, mdAndDown} = useDisplay();
  45. </script>
  46. <style scoped>
  47. .help-container {
  48. display: flex;
  49. flex-direction: row;
  50. justify-content: space-between;
  51. align-items: center;
  52. }
  53. .help-container-md {
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-between;
  57. align-items: center;
  58. }
  59. .button-faq {
  60. width: 195px;
  61. height: 53px;
  62. background: #64afb7;
  63. border-radius: 6px;
  64. color: white;
  65. padding: 19px 28px;
  66. gap: 9px;
  67. margin-left: auto;
  68. margin-right: auto;
  69. }
  70. .button-faq-md {
  71. width: 195px;
  72. height: 53px;
  73. background: #64afb7;
  74. border-radius: 6px;
  75. color: white;
  76. padding: 19px 28px;
  77. gap: 9px;
  78. margin-left: 3rem;
  79. margin-top: 2rem;
  80. }
  81. .details {
  82. margin-top: 20px;
  83. font-family: "Barlow";
  84. font-style: normal;
  85. font-weight: 500;
  86. color: #0e2d32;
  87. font-size: 1.2rem;
  88. line-height: 1.6rem;
  89. }
  90. .details-md {
  91. margin-top: 20px;
  92. font-family: "Barlow";
  93. font-style: normal;
  94. font-weight: 500;
  95. color: #0e2d32;
  96. font-size: 1.2rem;
  97. line-height: 1.6rem;
  98. margin-left: auto;
  99. margin-right: auto;
  100. width: 30rem;
  101. }
  102. .detail-item {
  103. margin-left: 28px;
  104. margin-bottom: 15px;
  105. color: #0e2d32;
  106. font-size: 1.1rem;
  107. }
  108. .need-help {
  109. width: 25rem;
  110. font-family: "Barlow";
  111. font-style: normal;
  112. font-weight: 300;
  113. font-size: 1.1rem;
  114. line-height: 1.4rem;
  115. color: #0e2d32;
  116. }
  117. .need-help-md {
  118. width: 30rem;
  119. font-family: "Barlow";
  120. font-style: normal;
  121. font-weight: 300;
  122. font-size: 1.1rem;
  123. line-height: 1.4rem;
  124. color: #0e2d32;
  125. width: 30rem;
  126. margin-left: auto;
  127. margin-right: auto;
  128. }
  129. .help-img {
  130. width: 50rem;
  131. border-radius: 3rem;
  132. }
  133. .help-img-md {
  134. width: 40rem;
  135. border-radius: 3rem;
  136. margin-left: auto;
  137. margin-right: auto;
  138. margin-top: 4rem;
  139. }
  140. .subtitle-team {
  141. margin-bottom: 0.7rem;
  142. font-family: "Barlow";
  143. font-style: normal;
  144. font-weight: 400;
  145. font-size: 2rem;
  146. line-height: 34px;
  147. width: 25rem;
  148. }
  149. .subtitle-team-md {
  150. margin-bottom: 0.7rem;
  151. font-style: normal;
  152. font-weight: 400;
  153. font-size: 2rem;
  154. line-height: 34px;
  155. text-align: left;
  156. width: 30rem;
  157. margin-left: auto;
  158. margin-right: auto;
  159. }
  160. </style>