| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <LayoutContainer>
- <v-row >
- <v-col cols="12" lg="6" class="col">
- <v-img src="/images/Home_logiciel/Opentalent_a_votre_service.png" />
- </v-col>
- <v-col cols="12" lg="6" class="col">
- <h4>
- Notre équipe est à vos côtés
- pour vous guider
- </h4>
- <p>
- Besoin d’aide ? <br />
- Vous souhaitez en savoir plus sur nos solutions ou vous avez
- besoin d'assistance sur l'utilisation de l'un de nos logiciels ?
- </p>
- <v-row>
- <ul>
- <li>
- Ouvert du lundi au vendredi de 8h15 à 17h45
- </li>
- <li>
- Support joignable par mail
- </li>
- <li>
- De nombreux articles tutoriels accessibles 24h/24
- </li>
- </ul>
- </v-row>
- <v-row>
- <v-btn
- href="https://ressources.opentalent.fr/"
- target="_blank"
- class="button-faq"
- >
- Consulter la FAQ
- </v-btn>
- </v-row>
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup lang="ts">
- import { useDisplay } from "vuetify";
- const { mdAndDown} = useDisplay();
- </script>
- <style scoped lang="scss">
- .v-container {
- margin: 64px auto 24px auto;
- padding: 16px;
- max-width: 95%;
- .col {
- padding: 0 6px;
- display: flex;
- flex-direction: column;
- }
- .col:first-child {
- align-items: center;
- }
- .col:nth-child(2) {
- padding: 60px;
- justify-content: center;
- align-items: self-start;
- }
- }
- li {
- margin-left: 28px;
- margin-bottom: 15px;
- color: #0e2d32;
- font-size: 1.1rem;
- }
- .v-img {
- width: 50rem;
- border-radius: 3rem;
- }
- h4 {
- margin-bottom: 0.7rem;
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 400;
- font-size: 2rem;
- line-height: 34px;
- width: 25rem;
- }
- p {
- width: 25rem;
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 300;
- font-size: 1.1rem;
- line-height: 1.4rem;
- color: #0e2d32;
- }
- ul {
- margin-top: 20px;
- max-height: 160px;
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 500;
- color: #0e2d32;
- font-size: 1.2rem;
- line-height: 1.6rem;
- }
- .button-faq {
- width: 195px;
- height: 53px;
- background: #64afb7;
- border-radius: 6px;
- color: white;
- padding: 19px 28px;
- gap: 9px;
- margin-left: auto;
- margin-right: auto;
- }
- @media (max-width: 960px) {
- .v-img {
- width: 40rem;
- margin-left: auto;
- margin-right: auto;
- margin-top: 4rem;
- }
- h4 {
- font-size: 2rem;
- text-align: left;
- width: 30rem;
- margin-left: auto;
- margin-right: auto;
- }
- p {
- width: 30rem;
- font-style: normal;
- font-weight: 300;
- font-size: 1.1rem;
- line-height: 1.4rem;
- color: #0e2d32;
- margin-left: auto;
- margin-right: auto;
- }
- ul {
- margin-left: auto;
- margin-right: auto;
- width: 30rem;
- }
- .button-faq {
- margin-left: 3rem;
- margin-top: 2rem;
- }
- }
- </style>
|