Help.vue 3.3 KB

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