Help.vue 2.5 KB

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