Contact.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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>
  19. Contactez-nous pour explorer ensemble de nouvelles opportunités.
  20. </p>
  21. <v-row>
  22. <v-btn to="/nous-contacter" class="button-faq">
  23. Devenir partenaire
  24. </v-btn>
  25. </v-row>
  26. </v-col>
  27. </v-row>
  28. </LayoutContainer>
  29. </AnchoredSection>
  30. </template>
  31. <script setup lang="ts">
  32. import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
  33. </script>
  34. <style scoped lang="scss">
  35. .v-container {
  36. margin: 64px auto 24px auto;
  37. padding: 16px;
  38. max-width: 95%;
  39. .col {
  40. padding: 0 6px;
  41. display: flex;
  42. flex-direction: column;
  43. }
  44. .col:first-child {
  45. align-items: center;
  46. }
  47. .col:nth-child(2) {
  48. padding: 60px;
  49. justify-content: center;
  50. align-items: self-start;
  51. @media (max-width: 600px) {
  52. padding: 12px;
  53. * {
  54. max-width: 100%;
  55. }
  56. }
  57. }
  58. @media (max-width: 600px) {
  59. margin: 0;
  60. }
  61. }
  62. .v-img {
  63. width: 50rem;
  64. border-radius: 3rem;
  65. }
  66. h3 {
  67. margin-bottom: 0.7rem;
  68. font-weight: 400;
  69. font-size: 2rem;
  70. line-height: 34px;
  71. width: 25rem;
  72. }
  73. p {
  74. width: 25rem;
  75. font-weight: 300;
  76. font-size: 1.1rem;
  77. line-height: 1.4rem;
  78. color: var(--primary-color);
  79. }
  80. .button-faq {
  81. width: 195px;
  82. height: 53px;
  83. margin-top: 30px;
  84. margin-left: 10px;
  85. background: var(--secondary-color);
  86. border-radius: 6px;
  87. color: var(--on-secondary-color);
  88. padding: 19px 28px;
  89. @media (max-width: 1240px) {
  90. width: 40%;
  91. margin-left: 30%;
  92. }
  93. @media (max-width: 600px) {
  94. width: 90%;
  95. margin-left: 5%;
  96. }
  97. }
  98. @media (max-width: 1240px) {
  99. .v-row {
  100. width: 100%;
  101. margin: 0;
  102. }
  103. .v-img {
  104. width: 40rem;
  105. margin-left: auto;
  106. margin-right: auto;
  107. margin-top: 4rem;
  108. }
  109. }
  110. </style>