| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <AnchoredSection id="certification">
- <LayoutContainer>
- <v-row class="center-90">
- <v-col cols="12" md="5">
- <LayoutUISubTitle> DES FORMATIONS CERTIFIÉES </LayoutUISubTitle>
- <LayoutUITitle>
- Certification Qualiopi : Marque de certification
- </LayoutUITitle>
- <div class="bloc-certif">
- <p>
- Nos formations sont certifiées Qualiopi - Actions de formations.
- </p>
- <p class="details-certifications">
- La marque « Qualiopi » vise à :
- </p>
- <ul>
- <li>
- Attester de la qualité du processus mis en œuvre par les
- prestataires d’actions concourant au développement des
- compétences ;
- </li>
- <li>
- Permettre une plus grande lisibilité de l’offre de formation
- auprès des entreprises et des usagers.
- </li>
- </ul>
- </div>
- </v-col>
- <v-col cols="12" md="7" class="image-container">
- <v-img
- src="/images/logos/qualiopi/Logo-Qualiopi_Processus_Certifié-Republique_Française.png"
- alt="Deux personnes en train d’échanger sur un projet devant deux ordinateurs dans un open space"
- />
- </v-col>
- </v-row>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- </script>
- <style scoped lang="scss">
- .bloc-certif {
- text-align: justify;
- margin: 18px;
- }
- ul {
- font-weight: 300;
- font-size: 16px;
- line-height: 20px;
- color: var(--primary-color);
- margin-top: 1rem;
- margin-left: 22px;
- }
- .details-certifications {
- font-weight: 300;
- font-size: 16px;
- line-height: 20px;
- color: var(--primary-color);
- margin-top: 1rem;
- }
- .image-container {
- display: flex;
- flex-direction: column;
- justify-content: center;
- .v-img {
- width: 80%;
- max-width: 500px;
- margin: auto;
- }
- }
- </style>
|