| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <AnchoredSection id="webinars">
- <LayoutContainer>
- <div class="alt-theme pt-6 mt-12">
- <v-row>
- <LayoutUISubTitle class="center-90">
- Nos accompagnements pour aller plus loin
- </LayoutUISubTitle>
- </v-row>
- <v-row class="formation pb-6 align-center center-90">
- <v-col v-for="(formation, index) in formations" :key="index" md="6">
- <div class="mb-6">
- <v-img
- :src="formation.image"
- :alt="formation.alt"
- class="background-img"
- />
- </div>
- <div>
- <h3>
- {{ formation.sessions }}
- </h3>
- <h4>
- {{ formation.title }}
- </h4>
- <p class="details mb-5">
- {{ formation.description }}
- </p>
- <v-btn :to="formation.link">
- {{ formation.buttonText }}
- </v-btn>
- </div>
- </v-col>
- </v-row>
- </div>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- import type { Formation } from '~/types/interface.js'
- const formations: Array<Formation> = [
- {
- image:
- '/images/components/formations/Formations_en_ligne_et_presentiel.jpg',
- alt: 'Formateur dans une salle avec 5 personnes levant la main',
- overlayClass: 'image-overlay1',
- sessions: 'Formation sur-mesure',
- title: ' Des formations adaptées à votre projet - en ligne',
- description:
- "Chaque projet de solution de mise en réseau d'organisation nécessite un accompagnement sur-mesure par notre équipe de formation en fonction de vos besoins.",
- buttonText: 'Formation sur-mesure',
- link: '/nous-contacter',
- },
- {
- image: '/images/components/formations/Webinaires_visioconferences.jpg',
- alt: 'Femme sur son bureau avec devant deux écrans d’ordinateur de bureau en visioconférence devant 12 personnes',
- overlayClass: 'image-overlay2',
- sessions: 'Webinaire CMF Réseau',
- title: "Trouvez le webinaire qu'il vous faut ",
- description:
- "Des explications précises sur certains modules du logiciel Opentalent Manager, c'est possible pour aller encore plus loin... ",
- buttonText: 'Découvrir nos webinaires ',
- link: '/webinaires',
- },
- ]
- </script>
- <style scoped>
- .v-row {
- max-width: 1600px;
- margin: 0 auto;
- }
- @media (min-width: 600px) {
- :deep(h2) {
- width: 60rem;
- }
- }
- .background-img {
- width: 600px;
- height: 400px;
- background-size: cover;
- background-position: center;
- @media (max-width: 600px) {
- height: auto;
- }
- }
- .formation {
- .v-btn {
- width: 26rem;
- height: 44px;
- font-weight: 500;
- font-size: 18px;
- line-height: 18px;
- background: transparent;
- color: var(--on-primary-color);
- border: 1px solid;
- border-color: var(--on-primary-color);
- border-radius: 0.5rem;
- text-transform: none;
- }
- h3 {
- font-weight: 500;
- font-size: 1.4rem;
- line-height: 26px;
- color: #caf5f4 !important;
- margin-bottom: 1.5rem;
- }
- h4 {
- font-weight: 500;
- font-size: 1.8rem;
- line-height: 26px;
- color: var(--on-primary-color);
- margin-bottom: 3rem;
- }
- .details {
- font-weight: 300;
- font-size: 1.2rem;
- max-width: 650px;
- line-height: 1.5rem;
- color: var(--on-primary-color);
- }
- }
- </style>
|