index.vue 739 B

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