Help.vue 2.5 KB

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