Missions.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <template>
  2. <LayoutContainer>
  3. <div
  4. v-for="(job, jobIndex) in jobs"
  5. :key="jobIndex"
  6. class="mission-container"
  7. >
  8. <!-- Première ligne -->
  9. <v-row class="announcement-title ml-6 mr-6">
  10. <div class="title-job">
  11. {{ job.title }}
  12. </div>
  13. <v-btn class="btn-more" text> En savoir plus </v-btn>
  14. </v-row>
  15. <!-- Deuxième ligne -->
  16. <v-row class="announcement-location ml-6 mr-6">
  17. <v-icon class="icon-location">
  18. <i class="fas fa-map-marker"></i>
  19. </v-icon>
  20. <div class="location">
  21. {{ job.location }}
  22. </div>
  23. </v-row>
  24. </div>
  25. <v-row class="apply-row ml-6 mb-6">
  26. <v-col cols="12">
  27. <p class="apply-now">
  28. Nous sommes toujours à la recherche de nouveaux talents. N'hésitez pas à
  29. déposer votre candidature ci-dessous :
  30. </p>
  31. </v-col>
  32. </v-row>
  33. <v-row>
  34. <v-col cols="12">
  35. <v-btn class="btn-send"> Envoyer ma candidature </v-btn>
  36. </v-col>
  37. </v-row>
  38. </LayoutContainer>
  39. </template>
  40. <script setup>
  41. import { ref } from "vue";
  42. const jobs = ref([
  43. {
  44. id: 1,
  45. image: "/images/Opentalent.png",
  46. title: "Assistant(e) Commercial(e) h/f",
  47. contractType: "CDI",
  48. location: "Paris",
  49. description:
  50. "Lorem ipsum dolor sit amet. At doloribus nostrum non temporibus quidem est ipsa laborum sed internos dolor in pariatur vitae. ..",
  51. properties: ["CDI", "Paris", "Commercial"],
  52. },
  53. {
  54. id: 1,
  55. image: "/images/Opentalent.png",
  56. title: "Assistant(e) Commercial(e) h/f",
  57. contractType: "CDI",
  58. location: "Paris",
  59. description:
  60. "Lorem ipsum dolor sit amet. At doloribus nostrum non temporibus quidem est ipsa laborum sed internos dolor in pariatur vitae. ..",
  61. properties: ["CDI", "Paris", "Commercial"],
  62. },
  63. {
  64. id: 1,
  65. image: "/images/Opentalent.png",
  66. title: "Assistant(e) Commercial(e) h/f",
  67. contractType: "CDI",
  68. location: "Paris",
  69. description:
  70. "Lorem ipsum dolor sit amet. At doloribus nostrum non temporibus quidem est ipsa laborum sed internos dolor in pariatur vitae. ..",
  71. properties: ["CDI", "Paris", "Commercial"],
  72. },
  73. ]);
  74. </script>
  75. <style scoped>
  76. .location{
  77. font-size: 1.3rem !important;
  78. color: #0e2d32;
  79. }
  80. .announcement-title {
  81. background: #0e2d32;
  82. color: white;
  83. display: flex;
  84. justify-content: space-between;
  85. padding: 10px;
  86. }
  87. .title-job {
  88. font-family: "Barlow";
  89. font-style: normal;
  90. font-weight: 600;
  91. font-size: 1.5rem;
  92. line-height: 39px;
  93. color: #ffffff;
  94. }
  95. .btn-more, .btn-send {
  96. background: #9edbdd;
  97. color: white;
  98. }
  99. .btn-send {
  100. display: flex;
  101. justify-content: center;
  102. align-items: center;
  103. width: 30%;
  104. margin-left: auto;
  105. margin-right: auto;
  106. font-weight: 700;
  107. }
  108. .announcement-location {
  109. background: #9edbdd;
  110. display: flex;
  111. align-items: center;
  112. padding: 10px;
  113. }
  114. .icon-location {
  115. font-size: 1rem !important;
  116. color: #0e2d32;
  117. }
  118. .location {
  119. margin-left: 10px;
  120. font-size: 2rem;
  121. }
  122. .apply-now {
  123. text-align: center;
  124. font-style: italic;
  125. font-weight: 300;
  126. font-size: 34px;
  127. line-height: 40px;
  128. color: #091d20;
  129. margin-bottom: 2rem;
  130. }
  131. .mission-container {
  132. margin-top: 5rem;
  133. margin-bottom: 5%;
  134. }
  135. </style>