Banner.vue 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <LayoutContainer>
  3. <LayoutUITitlePage>
  4. Nous rejoindre
  5. </LayoutUITitlePage>
  6. <v-row>
  7. <v-col cols="12">
  8. <CommonBanner
  9. imageSrc="/images/join/join.jpg"
  10. imageAlt="banner"
  11. />
  12. </v-col>
  13. </v-row>
  14. <h3 id="join-us-anchor" class="mt-6">
  15. Opentalent, où l'innovation & la passion se rencontrent !
  16. </h3>
  17. <span class="subtitle">
  18. Découvrez nos opportunités et rejoignez-nous dans cette aventure
  19. passionnante.
  20. </span>
  21. </LayoutContainer>
  22. </template>
  23. <script setup>
  24. </script>
  25. <style scoped>
  26. h3, .subtitle {
  27. font-family: "Barlow", serif;
  28. line-height: 2.5rem;
  29. text-align: center;
  30. }
  31. h3 {
  32. font-style: normal;
  33. font-weight: 600;
  34. font-size: 1.5rem;
  35. }
  36. .subtitle {
  37. display: block;
  38. font-weight: 300;
  39. font-size: 1.5rem;
  40. width: 100%;
  41. }
  42. </style>