Help.vue 2.5 KB

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