| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <LayoutContainer>
- <LayoutUITitlePage>
- Nous rejoindre
- </LayoutUITitlePage>
- <v-row>
- <v-col cols="12">
- <CommonBanner
- imageSrc="/images/join/join.jpg"
- imageAlt="banner"
- />
- </v-col>
- </v-row>
- <h3 id="join-us-anchor" class="mt-6">
- Opentalent, où l'innovation & la passion se rencontrent !
- </h3>
- <span class="subtitle">
- Découvrez nos opportunités et rejoignez-nous dans cette aventure
- passionnante.
- </span>
- </LayoutContainer>
- </template>
- <script setup>
- </script>
- <style scoped>
- h3, .subtitle {
- line-height: 2.5rem;
- text-align: center;
- }
- h3 {
- font-weight: 600;
- font-size: 1.5rem;
- }
- .subtitle {
- display: block;
- font-weight: 300;
- font-size: 1.5rem;
- width: 100%;
- }
- </style>
|