| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <AnchoredSection id="help">
- <LayoutContainer>
- <v-row no-gutters class="alt-theme">
- <v-col cols="12" md="6">
- <v-img
- src="/images/pages/qui-sommes-nous/contact/Opentalent_a_votre_service.png"
- alt="Un homme et une femme tous les deux le sourire aux lèvres se serre la main"
- cover
- />
- </v-col>
- <v-col cols="12" md="6">
- <div class="d-flex flex-column">
- <h4>
- Chez Opentalent, nous avons à cœur de répondre à vos
- interrogations et de vous apporter la solution faite pour vous.
- </h4>
- <v-btn to="/nous-contacter" class="inv-theme mt-12">
- Nous contacter
- </v-btn>
- </div>
- </v-col>
- </v-row>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- </script>
- <style scoped lang="scss">
- .v-col {
- height: 25rem;
- }
- .v-img {
- height: 25rem;
- }
- h4 {
- font-weight: 400;
- font-size: 2rem;
- line-height: 34px;
- width: 60%;
- margin: 3rem auto 2rem auto;
- color: var(--on-primary-color);
- text-align: justify;
- @media (max-width: 600px) {
- width: 80%;
- margin-left: 10%;
- }
- }
- .v-btn {
- width: 195px;
- height: 53px;
- background: var(--secondary-color) !important;
- border-radius: 6px;
- color: var(--on-secondary-color);
- padding: 19px 28px;
- gap: 9px;
- margin-right: auto;
- margin-left: auto;
- @media (max-width: 1240px) {
- width: 40%;
- margin-left: 30%;
- margin-bottom: 48px;
- }
- @media (max-width: 600px) {
- width: 80%;
- margin-left: 10%;
- }
- }
- </style>
|