Missions.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. .announcement-title {
  77. background: #0e2d32;
  78. color: white;
  79. display: flex;
  80. justify-content: space-between;
  81. padding: 10px;
  82. }
  83. .title-job {
  84. font-family: "Barlow";
  85. font-style: normal;
  86. font-weight: 600;
  87. font-size: 1.5rem;
  88. line-height: 39px;
  89. color: #ffffff;
  90. }
  91. .btn-more, .btn-send {
  92. background: #9edbdd;
  93. color: white;
  94. }
  95. .btn-send {
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. width: 30%;
  100. margin-left: auto;
  101. margin-right: auto;
  102. font-weight: 700;
  103. }
  104. .announcement-location {
  105. background: #9edbdd;
  106. display: flex;
  107. align-items: center;
  108. padding: 10px;
  109. }
  110. .icon-location {
  111. color: #0e2d32;
  112. }
  113. .location {
  114. margin-left: 10px;
  115. font-size: 2rem;
  116. }
  117. .apply-now {
  118. text-align: center;
  119. font-style: italic;
  120. font-weight: 300;
  121. font-size: 34px;
  122. line-height: 40px;
  123. color: #091d20;
  124. margin-bottom: 2rem;
  125. }
  126. .mission-container {
  127. margin-top: 5rem;
  128. margin-bottom: 5%;
  129. }
  130. </style>