FAQ.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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-style: normal;
  46. font-weight: 400;
  47. font-size: 2rem;
  48. line-height: 34px;
  49. width: 40rem;
  50. margin-right: auto;
  51. color: white;
  52. }
  53. .v-btn {
  54. width: 195px;
  55. height: 53px;
  56. background: #64afb7;
  57. border-radius: 6px;
  58. color: white;
  59. padding: 19px 28px;
  60. gap: 9px;
  61. margin-left: 2rem;
  62. }
  63. </style>