Help.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <LayoutContainer>
  3. <div class="container">
  4. <v-row>
  5. <v-col :cols="smAndDown ? 12 : 8">
  6. <v-img
  7. :class="smAndDown ? 'help-img-sm' : 'help-img'"
  8. src="/images/help/Help.png"
  9. />
  10. </v-col>
  11. <v-col :cols="smAndDown ? 12 : 4">
  12. <h4 class="subtitle-team">
  13. Notre équipe est à vos côtés pour vous guider
  14. </h4>
  15. <p class="need-help">
  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 class="details">
  22. <li class="detail-item">
  23. Ouvert du lundi au vendredi de 8h15 à 17h45
  24. </li>
  25. <li class="detail-item">
  26. Support joignable par mail
  27. </li>
  28. <li class="detail-item">
  29. De nombreux articles tutoriels accessibles 24h/24
  30. </li>
  31. </ul>
  32. </v-row>
  33. <v-row class="row-faq">
  34. <v-btn class="button-faq">
  35. consulter la FAQ
  36. </v-btn>
  37. </v-row>
  38. </v-col>
  39. </v-row>
  40. </div>
  41. </LayoutContainer>
  42. </template>
  43. <script setup>
  44. import "vue3-carousel/dist/carousel.css";
  45. import { useDisplay } from "vuetify";
  46. const { smAndDown } = useDisplay();
  47. </script>
  48. <style scoped>
  49. .button-faq {
  50. width: 195px;
  51. height: 53px;
  52. background: #64afb7;
  53. border-radius: 6px;
  54. color: white;
  55. padding: 19px 28px;
  56. gap: 9px;
  57. font-family: "Barlow";
  58. }
  59. .row-faq {
  60. margin-top: 2rem;
  61. }
  62. .details {
  63. margin-top: 50px;
  64. width: 19rem;
  65. font-family: "Barlow";
  66. font-style: normal;
  67. font-weight: 300;
  68. color: #0e2d32;
  69. font-size: 1.5rem;
  70. line-height: 1.6rem;
  71. }
  72. .detail-item {
  73. margin-left: 28px;
  74. margin-bottom: 15px;
  75. width: 286px;
  76. left: 933px;
  77. font-family: "Barlow";
  78. font-style: normal;
  79. font-weight: 300;
  80. color: #0e2d32;
  81. }
  82. .need-help {
  83. width: 25rem;
  84. font-family: "Barlow";
  85. font-style: normal;
  86. font-weight: 300;
  87. font-size: 1.7rem;
  88. line-height: 2rem;
  89. color: #0e2d32;
  90. }
  91. .help-img {
  92. width: 50rem;
  93. margin-left: 5rem;
  94. border-radius: 3rem;
  95. }
  96. .help-img-sm {
  97. width: 50rem;
  98. border-radius: 3rem;
  99. }
  100. .subtitle-team {
  101. margin-top: 2rem;
  102. margin-bottom: 2rem;
  103. font-family: "Barlow";
  104. font-style: normal;
  105. font-weight: 400;
  106. font-size: 2.5rem;
  107. line-height: 34px;
  108. width: 25rem;
  109. }
  110. .container {
  111. margin-bottom: 1rem;
  112. margin-top: 3rem;
  113. }
  114. </style>