| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <LayoutContainer id="faq">
- <v-row no-gutters>
- <v-col cols="6">
- <div class="help-img"></div>
- <!-- <v-img class="help-img" src="/images/help/Help.png" /> -->
- </v-col>
- <v-col cols="6" class="help-col">
- <div class="ml-6">
- <h4 class="subtitle-team ml-12">
- Chez Opentalent, nous avons à coeur de répondre à vos interrogations
- et de vous apporter la solution faite pour vous.
- </h4>
- <nuxt-link to="/nous-contacter">
- <v-btn class="button-faq ml-12 mt-12">
- Nous contacter
- </v-btn></nuxt-link
- >
- <v-row> </v-row>
- </div>
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup></script>
- <style scoped>
- .button-faq {
- width: 195px;
- height: 53px;
- background: #64afb7;
- border-radius: 6px;
- color: white;
- padding: 19px 28px;
- gap: 9px;
- margin-left: 2rem;
- }
- .help-img {
- background-image: url(/images/help/Help.png);
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center;
- width: 100%;
- height: 20rem;
- }
- .subtitle-team {
- margin-bottom: 2rem;
- margin-top: 3rem;
- font-style: normal;
- font-weight: 400;
- font-size: 2rem;
- line-height: 34px;
- width: 40rem;
- margin-right: auto;
- color: white;
- }
- .help-col {
- background: var(--Vert-90, #0e2d32);
- height: 20rem;
- }
- </style>
|