FAQ.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <AnchoredSection id="help">
  3. <LayoutContainer>
  4. <v-row no-gutters class="alt-theme">
  5. <v-col cols="6">
  6. <v-img
  7. src="/images/help/Help.png"
  8. cover
  9. />
  10. </v-col>
  11. <v-col cols="6">
  12. <div class="ml-6">
  13. <h4 class="ml-12">
  14. Chez Opentalent, nous avons à coeur de répondre à vos interrogations
  15. et de vous apporter la solution faite pour vous.
  16. </h4>
  17. <v-btn
  18. to="/nous-contacter"
  19. class="ml-12 mt-12"
  20. >
  21. Nous contacter
  22. </v-btn>
  23. </div>
  24. </v-col>
  25. </v-row>
  26. </LayoutContainer>
  27. </AnchoredSection>
  28. </template>
  29. <script setup lang="ts">
  30. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  31. </script>
  32. <style scoped lang="scss">
  33. .v-col {
  34. height: 20rem;
  35. }
  36. .help-img {
  37. background-repeat: no-repeat;
  38. background-position: center;
  39. width: 100%;
  40. height: 20rem;
  41. }
  42. h4 {
  43. margin-bottom: 2rem;
  44. margin-top: 3rem;
  45. font-weight: 400;
  46. font-size: 2rem;
  47. line-height: 34px;
  48. width: 40rem;
  49. margin-right: auto;
  50. color: var(--on-primary-color);
  51. }
  52. .v-btn {
  53. width: 195px;
  54. height: 53px;
  55. background: var(--secondary-color);
  56. border-radius: 6px;
  57. color: var(--on-secondary-color);
  58. padding: 19px 28px;
  59. gap: 9px;
  60. margin-left: 2rem;
  61. }
  62. </style>