| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <LayoutContainer>
- <v-row no-gutters>
- <v-col cols="6">
- <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">
- Chez Opentalent, nous avons à coeur de répondre à vos interrogations
- et de vous apporter la solution faite pour vous.
- </h4>
- <v-row>
- <nuxt-link to="/nous-contacter">
- <v-btn class="button-faq ml-6 mt-12">
- Nous contacter
- </v-btn></nuxt-link
- >
- </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;
- }
- .help-img {
- height: 100%;
- width: 100%;
- }
- .subtitle-team {
- margin-bottom: 2rem;
- margin-top: 10rem;
- font-style: normal;
- font-weight: 400;
- font-size: 2rem;
- line-height: 34px;
- width: 35rem;
- color: white;
- }
- .help-col {
- background: var(--Vert-90, #0e2d32);
- }
- .text-content {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- </style>
|