| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <AnchoredSection id="help">
- <LayoutContainer>
- <v-row no-gutters class="alt-theme">
- <v-col cols="6">
- <v-img
- src="/images/help/Help.png"
- cover
- />
- </v-col>
- <v-col cols="6">
- <div class="ml-6">
- <h4 class="ml-12">
- 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="ml-12 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;
- }
- .help-img {
- background-repeat: no-repeat;
- background-position: center;
- width: 100%;
- height: 20rem;
- }
- h4 {
- 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;
- }
- .v-btn {
- width: 195px;
- height: 53px;
- background: #64afb7;
- border-radius: 6px;
- color: white;
- padding: 19px 28px;
- gap: 9px;
- margin-left: 2rem;
- }
- </style>
|