FAQ.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. text-align: justify;
  51. }
  52. }
  53. .v-btn {
  54. width: 195px;
  55. height: 53px;
  56. background: var(--secondary-color) !important;
  57. border-radius: 6px;
  58. color: var(--on-secondary-color);
  59. padding: 19px 28px;
  60. gap: 9px;
  61. margin-left: 84px;
  62. @media (max-width: 1240px) {
  63. width: 40%;
  64. margin-left: 30%;
  65. margin-bottom: 48px;
  66. }
  67. @media (max-width: 600px) {
  68. width: 80%;
  69. margin-left: 10%;
  70. }
  71. }
  72. </style>