Banner.vue 810 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. line-height: 2.5rem;
  28. text-align: center;
  29. }
  30. h3 {
  31. font-weight: 600;
  32. font-size: 1.5rem;
  33. }
  34. .subtitle {
  35. display: block;
  36. font-weight: 300;
  37. font-size: 1.5rem;
  38. width: 100%;
  39. }
  40. </style>