| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <!--
- Section "Besoin d'aide" de la page d'accueil
- -->
- <template>
- <AnchoredSection id="contact">
- <LayoutContainer>
- <v-row class="center-90 mt-6">
- <v-col cols="12" lg="6" class="col">
- <v-img
- src="/images/pages/home/help/Opentalent_a_votre_service.png"
- alt="Un homme et une femme, tous les deux le sourire aux lèvres, se serrent la main"
- />
- </v-col>
- <v-col cols="12" lg="6" class="col">
- <h3>Nous contacter</h3>
- <p>Vous souhaitez devenir partenaire d’Opentalent ?</p>
- <br />
- <p>
- Contactez-nous pour explorer ensemble de nouvelles opportunités.
- </p>
- <v-row>
- <v-btn to="/nous-contacter" class="button-faq">
- Devenir partenaire
- </v-btn>
- </v-row>
- </v-col>
- </v-row>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- </script>
- <style scoped lang="scss">
- .v-container {
- margin: 64px auto 24px auto;
- padding: 16px;
- max-width: 95%;
- .col {
- padding: 0 6px;
- display: flex;
- flex-direction: column;
- align-self: center;
- }
- .col:nth-child(2) {
- padding-left: 60px;
- padding-right: 60px;
- @media (max-width: 600px) {
- padding: 12px;
- * {
- max-width: 100%;
- }
- }
- }
- @media (max-width: 600px) {
- margin: 0;
- }
- }
- .v-img {
- width: 50rem;
- border-radius: 3rem;
- }
- h3 {
- margin-bottom: 0.7rem;
- font-weight: 400;
- font-size: 2rem;
- line-height: 34px;
- width: 25rem;
- }
- p {
- width: 25rem;
- font-weight: 300;
- font-size: 1.1rem;
- line-height: 1.4rem;
- color: var(--primary-color);
- }
- .button-faq {
- width: 195px;
- height: 53px;
- margin-top: 30px;
- margin-left: 10px;
- background: var(--secondary-color);
- border-radius: 6px;
- color: var(--on-secondary-color);
- padding: 19px 28px;
- @media (max-width: 1240px) {
- width: 40%;
- margin-left: 30%;
- }
- @media (max-width: 600px) {
- width: 90%;
- margin-left: 5%;
- }
- }
- @media (max-width: 1240px) {
- .v-row {
- width: 100%;
- margin: 0;
- }
- .v-img {
- width: 40rem;
- margin-left: auto;
- margin-right: auto;
- margin-top: 4rem;
- }
- }
- </style>
|