Help.vue 3.0 KB

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