Contact.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 serrent 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. align-self: center;
  44. }
  45. .col:nth-child(2) {
  46. padding-left: 60px;
  47. padding-right: 60px;
  48. @media (max-width: 600px) {
  49. padding: 12px;
  50. * {
  51. max-width: 100%;
  52. }
  53. }
  54. }
  55. @media (max-width: 600px) {
  56. margin: 0;
  57. }
  58. }
  59. .v-img {
  60. width: 50rem;
  61. border-radius: 3rem;
  62. }
  63. h3 {
  64. margin-bottom: 0.7rem;
  65. font-weight: 400;
  66. font-size: 2rem;
  67. line-height: 34px;
  68. width: 25rem;
  69. }
  70. p {
  71. width: 25rem;
  72. font-weight: 300;
  73. font-size: 1.1rem;
  74. line-height: 1.4rem;
  75. color: var(--primary-color);
  76. }
  77. .button-faq {
  78. width: 195px;
  79. height: 53px;
  80. margin-top: 30px;
  81. margin-left: 10px;
  82. background: var(--secondary-color);
  83. border-radius: 6px;
  84. color: var(--on-secondary-color);
  85. padding: 19px 28px;
  86. @media (max-width: 1240px) {
  87. width: 40%;
  88. margin-left: 30%;
  89. }
  90. @media (max-width: 600px) {
  91. width: 90%;
  92. margin-left: 5%;
  93. }
  94. }
  95. @media (max-width: 1240px) {
  96. .v-row {
  97. width: 100%;
  98. margin: 0;
  99. }
  100. .v-img {
  101. width: 40rem;
  102. margin-left: auto;
  103. margin-right: auto;
  104. margin-top: 4rem;
  105. }
  106. }
  107. </style>