FAQ.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <LayoutContainer>
  3. <v-row no-gutters>
  4. <v-col cols="6">
  5. <v-img class="help-img" src="/images/help/Help.png" />
  6. </v-col>
  7. <v-col cols="6" class="help-col ">
  8. <div class="ml-6">
  9. <h4 class="subtitle-team">
  10. Chez Opentalent, nous avons à coeur de répondre à vos interrogations
  11. et de vous apporter la solution faite pour vous.
  12. </h4>
  13. <v-row>
  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>
  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. height: 100%;
  38. width: 100%;
  39. }
  40. .subtitle-team {
  41. margin-bottom: 2rem;
  42. margin-top: 10rem;
  43. font-style: normal;
  44. font-weight: 400;
  45. font-size: 2rem;
  46. line-height: 34px;
  47. width: 35rem;
  48. color: white;
  49. }
  50. .help-col {
  51. background: var(--Vert-90, #0e2d32);
  52. }
  53. .text-content {
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-between;
  57. }
  58. </style>