FAQ.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <LayoutContainer id="faq">
  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 ml-12">
  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-12 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. margin-left: 2rem;
  36. }
  37. .help-img {
  38. background-image: url(/images/help/Help.png);
  39. background-repeat: no-repeat;
  40. background-size: cover;
  41. background-position: center;
  42. width: 100%;
  43. height: 20rem;
  44. }
  45. .subtitle-team {
  46. margin-bottom: 2rem;
  47. margin-top: 3rem;
  48. font-style: normal;
  49. font-weight: 400;
  50. font-size: 2rem;
  51. line-height: 34px;
  52. width: 40rem;
  53. margin-right: auto;
  54. color: white;
  55. }
  56. .help-col {
  57. background: var(--Vert-90, #0e2d32);
  58. height: 20rem;
  59. }
  60. </style>