Help.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="mt-12">
  4. <v-container class="container">
  5. <div class="help-container">
  6. <v-col cols="6">
  7. <v-img class="help-img" src="/images/help/Help.png" />
  8. </v-col>
  9. <v-col cols="6">
  10. <h4 class="subtitle-team ml-10">
  11. Notre équipe est à vos côtés <br />
  12. pour vous guider
  13. </h4>
  14. <p class="need-help ml-10">
  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="details ml-10">
  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="row-faq ml-10">
  31. <a href="https://ressources.opentalent.fr/" target="_blank">
  32. <v-btn class="button-faq">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 } = useDisplay();
  45. </script>
  46. <style scoped>
  47. .container {
  48. margin-left: auto;
  49. margin-right: auto;
  50. width: auto;
  51. }
  52. .help-container {
  53. display: flex;
  54. flex-direction: row;
  55. justify-content: space-between;
  56. align-items: center;
  57. }
  58. .button-faq {
  59. width: 195px;
  60. height: 53px;
  61. background: #64afb7;
  62. border-radius: 6px;
  63. color: white;
  64. padding: 19px 28px;
  65. gap: 9px;
  66. }
  67. .details {
  68. margin-top: 20px;
  69. font-family: "Barlow";
  70. font-style: normal;
  71. font-weight: 500;
  72. color: #0e2d32;
  73. font-size: 1.2rem;
  74. line-height: 1.6rem;
  75. }
  76. .detail-item {
  77. margin-left: 28px;
  78. margin-bottom: 15px;
  79. color: #0e2d32;
  80. font-size: 1.1rem;
  81. }
  82. .need-help {
  83. width: 25rem;
  84. font-family: "Barlow";
  85. font-style: normal;
  86. font-weight: 300;
  87. font-size: 1.1rem;
  88. line-height: 1.4rem;
  89. color: #0e2d32;
  90. }
  91. .help-img {
  92. width: 50rem;
  93. border-radius: 3rem;
  94. }
  95. .help-img-sm {
  96. width: 50rem;
  97. border-radius: 3rem;
  98. }
  99. .subtitle-team {
  100. margin-bottom: 0.7rem;
  101. font-family: "Barlow";
  102. font-style: normal;
  103. font-weight: 400;
  104. font-size: 2rem;
  105. line-height: 34px;
  106. width: 25rem;
  107. }
  108. .container {
  109. margin-bottom: 1rem;
  110. margin-top: 3rem;
  111. }
  112. </style>