Equipe.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <template>
  2. <LayoutContainer id="team">
  3. <v-row class="mt-12 custom-row">
  4. <LayoutUISubTitle
  5. :iconSize="6"
  6. :iconClasses="iconClasses"
  7. :titleText="'notre équipe'"
  8. />
  9. </v-row>
  10. <v-row class="custom-row">
  11. <LayoutUITitle title="Une équipe spécialisée et passionnée" />
  12. <h4 class="details ml-4 mt-6 mb-12">
  13. Chez Opentalent, on recherche des compétences mais surtout des hommes et
  14. des femmes qui souhaitent s'engager dans un projet porteur de sens.
  15. </h4>
  16. </v-row>
  17. <v-row class="custom-row">
  18. <v-col
  19. cols="12"
  20. sm="6"
  21. md="4"
  22. lg="3"
  23. v-for="chef in chefs"
  24. :key="chef.id"
  25. >
  26. <v-card>
  27. <v-img :src="chef.photo" height="370px"></v-img>
  28. <v-card-title class="name">{{ chef.nom }}</v-card-title>
  29. <v-card-subtitle class="poste">{{ chef.poste }}</v-card-subtitle>
  30. <!-- <v-card-text clas>{{ chef.description }}</v-card-text> -->
  31. </v-card>
  32. </v-col>
  33. </v-row>
  34. <v-row class="custom-row">
  35. <v-col
  36. cols="12"
  37. sm="6"
  38. md="4"
  39. lg="3"
  40. v-for="employe in employes"
  41. :key="employe.id"
  42. >
  43. <v-card>
  44. <v-img :src="employe.photo" height="370px"></v-img>
  45. <v-card-title class="name"> {{ employe.nom }}</v-card-title>
  46. <v-card-subtitle class="poste">{{ employe.poste }}</v-card-subtitle>
  47. <!-- <v-card-text>{{ employe.description }}</v-card-text> -->
  48. </v-card>
  49. </v-col>
  50. </v-row>
  51. </LayoutContainer>
  52. </template>
  53. <script setup>
  54. import { ref } from "vue";
  55. const chefs = ref([
  56. {
  57. id: 1,
  58. nom: "Guillaume",
  59. poste: "Fondateur / DIRECTEUR COMMERCIAL",
  60. photo: "/images/about/equipe/Guillaume_CORCOBA-co-fondateur_et_Gerant.png",
  61. description:
  62. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.",
  63. },
  64. {
  65. id: 1,
  66. nom: "Michel",
  67. poste: "FONDATEUR / Directeur développement",
  68. photo: "/images/about/equipe/Michel_PERNET-SOLLIET-Co-fondateur_et_Product_Owner.png",
  69. description:
  70. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.",
  71. },
  72. ]);
  73. const employes = ref([
  74. {
  75. id: 1,
  76. nom: "Johan",
  77. poste: " FORMATEUR",
  78. photo: "/images/about/equipe/Johan_HAUDIQUET-Formateur_et_Assistance.png",
  79. description:
  80. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  81. },
  82. {
  83. id: 1,
  84. nom: "Nathalie",
  85. poste: "Ch. DEVELOPPEMENT COMMERCIAL",
  86. photo: "/images/about/equipe/Nathalie_CHEVALON-Chargee_de_developpement_commercial.png",
  87. description:
  88. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolorel",
  89. },
  90. {
  91. id: 1,
  92. nom: "Laetitia",
  93. poste: "CH. COMMUNICATION & MARKETING",
  94. photo: "/images/about/equipe/Laetitia_SIFFOINTE-Chargee_de_Marketing_et_Communication.png",
  95. description:
  96. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  97. },
  98. {
  99. id: 1,
  100. nom: "Florence",
  101. poste: "ASSISTANTE ADMINISTRATIVE",
  102. photo: "/images/about/equipe/Florence_JOANNIDIS-ADV.png",
  103. description:
  104. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  105. },
  106. {
  107. id: 1,
  108. nom: "Vincent",
  109. poste: "LEAD DEVELOPPEUR",
  110. photo: "/images/about/equipe/Vincent_GUFFON-Lead_dev.png",
  111. description:
  112. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  113. },
  114. {
  115. id: 1,
  116. nom: "Olivier",
  117. poste: "DEVELOPPEUR",
  118. photo: "/images/about/equipe/Olivier_MASSOT-Developpeur.png",
  119. description:
  120. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  121. },
  122. {
  123. id: 1,
  124. nom: "Sébastien",
  125. poste: "DEVELOPPEUR",
  126. photo: "/images/about/equipe/Sebastien_FAVRE-BONTE_Developpeur.png",
  127. description:
  128. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  129. },
  130. {
  131. id: 1,
  132. nom: "Maha",
  133. poste: "DEVELOPPEUSE",
  134. photo: "/images/about/equipe/Maha_BOUCHIBA-Developpeuse.png",
  135. description:
  136. "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore",
  137. },
  138. ]);
  139. </script>
  140. <style scoped>
  141. .custom-row {
  142. width: 90%;
  143. margin-left: auto;
  144. margin-right: auto;
  145. }
  146. .v-card {
  147. max-width: 284px;
  148. border: none !important;
  149. box-shadow: none !important;
  150. background-color: transparent !important;
  151. }
  152. .details {
  153. color: var(--Vert-100, #091d20);
  154. font-family: Barlow;
  155. font-size: 16px;
  156. font-weight: 300;
  157. line-height: 20px;
  158. width: 30rem;
  159. }
  160. .v-card {
  161. max-width: 284px;
  162. border: none !important;
  163. box-shadow: none !important;
  164. background-color: transparent !important;
  165. }
  166. .description {
  167. color: var(--Vert-100, #091d20);
  168. font-family: Barlow;
  169. font-size: 14px;
  170. font-style: normal;
  171. font-weight: 300;
  172. line-height: 18px;
  173. }
  174. .name {
  175. color: #112528;
  176. /* Subtitle 1 */
  177. font-family: Barlow;
  178. font-size: 22px;
  179. font-style: normal;
  180. font-weight: 500;
  181. line-height: 26px;
  182. }
  183. .poste {
  184. color: #071b1f;
  185. font-family: Barlow;
  186. font-size: 10px;
  187. font-style: normal;
  188. font-weight: 600;
  189. line-height: 15px;
  190. letter-spacing: 1.8px;
  191. text-transform: uppercase;
  192. }
  193. .v-card-subtitle {
  194. text-overflow: ellipsis;
  195. white-space: normal;
  196. }
  197. </style>