FAQ.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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="inv-theme 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. .v-img {
  38. height: 20rem;
  39. }
  40. h4 {
  41. font-weight: 400;
  42. font-size: 2rem;
  43. line-height: 34px;
  44. width: 40rem;
  45. margin: 3rem auto 2rem 62px;
  46. color: var(--on-primary-color);
  47. @media (max-width: 600px) {
  48. width: 80%;
  49. margin-left: 10%;
  50. }
  51. }
  52. .v-btn {
  53. width: 195px;
  54. height: 53px;
  55. background: var(--secondary-color) !important;
  56. border-radius: 6px;
  57. color: var(--on-secondary-color);
  58. padding: 19px 28px;
  59. gap: 9px;
  60. margin-left: 84px;
  61. @media (max-width: 1240px) {
  62. width: 40%;
  63. margin-left: 30%;
  64. margin-bottom: 48px;
  65. }
  66. @media (max-width: 600px) {
  67. width: 80%;
  68. margin-left: 10%;
  69. }
  70. }
  71. </style>