Help.vue 3.1 KB

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