Help.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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/pages/home/help/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>Notre équipe est à vos côtés pour vous guider</h3>
  15. <p>
  16. Besoin d’aide ? <br />
  17. Vous souhaitez en savoir plus sur nos solutions ou vous avez besoin
  18. 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 8h30 à 12h00 et de 13h30 à 17h30
  24. (16h00 le vendredi).
  25. </li>
  26. <li>Support joignable par mail</li>
  27. <li>De nombreux articles tutoriels accessibles 24h/24</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"></script>
  44. <style scoped lang="scss">
  45. .v-container {
  46. margin: 64px auto 24px auto;
  47. padding: 16px;
  48. max-width: 95%;
  49. .col {
  50. padding: 0 6px;
  51. display: flex;
  52. flex-direction: column;
  53. }
  54. .col:first-child {
  55. align-items: center;
  56. }
  57. .col:nth-child(2) {
  58. padding: 60px;
  59. justify-content: center;
  60. align-items: self-start;
  61. @media (max-width: 600px) {
  62. padding: 12px;
  63. * {
  64. max-width: 100%;
  65. }
  66. }
  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. h3 {
  80. margin-bottom: 0.7rem;
  81. font-weight: 400;
  82. font-size: 2rem;
  83. line-height: 34px;
  84. width: 25rem;
  85. }
  86. p {
  87. width: 25rem;
  88. font-weight: 300;
  89. font-size: 1.1rem;
  90. line-height: 1.4rem;
  91. color: var(--primary-color);
  92. }
  93. ul {
  94. margin-top: 20px;
  95. max-height: 160px;
  96. font-weight: 500;
  97. color: var(--primary-color);
  98. font-size: 1.2rem;
  99. line-height: 1.6rem;
  100. }
  101. .button-faq {
  102. width: 195px;
  103. height: 53px;
  104. background: var(--secondary-color);
  105. border-radius: 6px;
  106. color: var(--on-secondary-color);
  107. padding: 19px 28px;
  108. gap: 9px;
  109. margin-left: auto;
  110. margin-right: auto;
  111. @media (max-width: 1240px) {
  112. margin-top: 24px;
  113. width: 40%;
  114. margin-left: 30%;
  115. }
  116. @media (max-width: 600px) {
  117. width: 90%;
  118. margin-left: 5%;
  119. }
  120. }
  121. @media (max-width: 1240px) {
  122. .v-row {
  123. width: 100%;
  124. margin: 0;
  125. }
  126. .v-img {
  127. width: 40rem;
  128. margin-left: auto;
  129. margin-right: auto;
  130. margin-top: 4rem;
  131. }
  132. h4 {
  133. font-size: 2rem;
  134. text-align: left;
  135. width: 30rem;
  136. margin-left: auto;
  137. margin-right: auto;
  138. }
  139. p {
  140. width: 30rem;
  141. font-weight: 300;
  142. font-size: 1.1rem;
  143. line-height: 1.4rem;
  144. color: var(--primary-color);
  145. margin-left: auto;
  146. margin-right: auto;
  147. }
  148. ul {
  149. margin-left: auto;
  150. margin-right: auto;
  151. width: 30rem;
  152. }
  153. }
  154. </style>