FAQ.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <LayoutContainer>
  3. <v-row no-gutters>
  4. <v-col cols="6">
  5. <div class="help-img"></div>
  6. <!-- <v-img class="help-img" src="/images/help/Help.png" /> -->
  7. </v-col>
  8. <v-col cols="6" class="help-col">
  9. <div class="ml-6">
  10. <h4 class="subtitle-team">
  11. Chez Opentalent, nous avons à coeur de répondre à vos interrogations
  12. et de vous apporter la solution faite pour vous.
  13. </h4>
  14. <nuxt-link to="/nous-contacter">
  15. <v-btn class="button-faq ml-6 mt-12">
  16. Nous contacter
  17. </v-btn></nuxt-link
  18. >
  19. <v-row> </v-row>
  20. </div>
  21. </v-col>
  22. </v-row>
  23. </LayoutContainer>
  24. </template>
  25. <script setup></script>
  26. <style scoped>
  27. .button-faq {
  28. width: 195px;
  29. height: 53px;
  30. background: #64afb7;
  31. border-radius: 6px;
  32. color: white;
  33. padding: 19px 28px;
  34. gap: 9px;
  35. }
  36. .help-img {
  37. background-image: url(/images/help/Help.png);
  38. background-repeat: no-repeat;
  39. background-size: cover;
  40. background-position: center;
  41. width: 100%;
  42. height: 20rem;
  43. }
  44. .subtitle-team {
  45. margin-bottom: 2rem;
  46. margin-top: 3rem;
  47. font-style: normal;
  48. font-weight: 400;
  49. font-size: 2rem;
  50. line-height: 34px;
  51. width: 40rem;
  52. margin-right: auto;
  53. color: white;
  54. }
  55. .help-col {
  56. background: var(--Vert-90, #0e2d32);
  57. height: 20rem;
  58. }
  59. </style>