Contact.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <!--
  2. Section "Besoin d'aide" de la page d'accueil
  3. -->
  4. <template>
  5. <AnchoredSection id="contact">
  6. <LayoutContainer>
  7. <v-row class="center-90 mt-6">
  8. <v-col cols="12" lg="6" class="col">
  9. <v-img
  10. src="/images/pages/home/help/Opentalent_a_votre_service.png"
  11. alt="Un homme et une femme tous les deux le sourire aux lèvres se serre la main"
  12. />
  13. </v-col>
  14. <v-col cols="12" lg="6" class="col">
  15. <h3>Nous contacter</h3>
  16. <p>Vous souhaitez devenir partenaire d’Opentalent ? </p>
  17. <br />
  18. <p>Contactez-nous pour explorer ensemble de nouvelles opportunités.</p>
  19. <v-row>
  20. <v-btn
  21. to="/nous-contacter"
  22. class="button-faq"
  23. >
  24. Devenir partenaire
  25. </v-btn>
  26. </v-row>
  27. </v-col>
  28. </v-row>
  29. </LayoutContainer>
  30. </AnchoredSection>
  31. </template>
  32. <script setup lang="ts">
  33. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  34. </script>
  35. <style scoped lang="scss">
  36. .v-container {
  37. margin: 64px auto 24px auto;
  38. padding: 16px;
  39. max-width: 95%;
  40. .col {
  41. padding: 0 6px;
  42. display: flex;
  43. flex-direction: column;
  44. }
  45. .col:first-child {
  46. align-items: center;
  47. }
  48. .col:nth-child(2) {
  49. padding: 60px;
  50. justify-content: center;
  51. align-items: self-start;
  52. @media (max-width: 600px) {
  53. padding: 12px;
  54. * {
  55. max-width: 100%;
  56. }
  57. }
  58. }
  59. }
  60. .v-img {
  61. width: 50rem;
  62. border-radius: 3rem;
  63. }
  64. h3 {
  65. margin-bottom: 0.7rem;
  66. font-weight: 400;
  67. font-size: 2rem;
  68. line-height: 34px;
  69. width: 25rem;
  70. }
  71. p {
  72. width: 25rem;
  73. font-weight: 300;
  74. font-size: 1.1rem;
  75. line-height: 1.4rem;
  76. color: var(--primary-color);
  77. }
  78. .button-faq {
  79. width: 195px;
  80. height: 53px;
  81. margin-top: 30px;
  82. margin-left: 10px;
  83. background: var(--secondary-color);
  84. border-radius: 6px;
  85. color: var(--on-secondary-color);
  86. padding: 19px 28px;
  87. @media (max-width: 1240px) {
  88. margin-top: 24px;
  89. width: 40%;
  90. margin-left: 30%;
  91. }
  92. @media (max-width: 600px) {
  93. width: 90%;
  94. margin-left: 5%;
  95. }
  96. }
  97. @media (max-width: 1240px) {
  98. .v-row {
  99. width: 100%;
  100. margin: 0;
  101. }
  102. .v-img {
  103. width: 40rem;
  104. margin-left: auto;
  105. margin-right: auto;
  106. margin-top: 4rem;
  107. }
  108. }
  109. </style>