FAQ.vue 1.6 KB

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