| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <AnchoredSection id="help">
- <LayoutContainer>
- <v-row no-gutters class="alt-theme">
- <v-col cols="12" md="6">
- <v-img
- src="/images/help/Help.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>
- <h4>
- Chez Opentalent, nous avons à coeur 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: 20rem;
- }
- .v-img {
- height: 20rem;
- }
- h4 {
- font-weight: 400;
- font-size: 2rem;
- line-height: 34px;
- width: 40rem;
- margin: 3rem auto 2rem 62px;
- color: var(--on-primary-color);
- @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-left: 84px;
- @media (max-width: 1240px) {
- width: 40%;
- margin-left: 30%;
- margin-bottom: 48px;
- }
- @media (max-width: 600px) {
- width: 80%;
- margin-left: 10%;
- }
- }
- </style>
|