Certification.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <AnchoredSection id="certification">
  3. <LayoutContainer>
  4. <v-row class="center-90">
  5. <v-col cols="12" md="5">
  6. <LayoutUISubTitle> DES FORMATIONS CERTIFIÉES </LayoutUISubTitle>
  7. <LayoutUITitle>
  8. Certification Qualiopi : Marque de certification
  9. </LayoutUITitle>
  10. <div class="bloc-certif">
  11. <p>
  12. Nos formations sont certifiées Qualiopi - Actions de formations.
  13. </p>
  14. <p class="details-certifications">
  15. La marque « Qualiopi » vise à :
  16. </p>
  17. <ul>
  18. <li>
  19. Attester de la qualité du processus mis en œuvre par les
  20. prestataires d’actions concourant au développement des
  21. compétences ;
  22. </li>
  23. <li>
  24. Permettre une plus grande lisibilité de l’offre de formation
  25. auprès des entreprises et des usagers.
  26. </li>
  27. </ul>
  28. </div>
  29. </v-col>
  30. <v-col cols="12" md="7" class="image-container">
  31. <v-img
  32. src="/images/logos/qualiopi/Logo-Qualiopi_Processus_Certifié-Republique_Française.png"
  33. alt="Deux personnes en train d’échanger sur un projet devant deux ordinateurs dans un open space"
  34. />
  35. </v-col>
  36. </v-row>
  37. </LayoutContainer>
  38. </AnchoredSection>
  39. </template>
  40. <script setup lang="ts">
  41. import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
  42. </script>
  43. <style scoped lang="scss">
  44. .bloc-certif {
  45. text-align: justify;
  46. margin: 18px;
  47. }
  48. ul {
  49. font-weight: 300;
  50. font-size: 16px;
  51. line-height: 20px;
  52. color: var(--primary-color);
  53. margin-top: 1rem;
  54. margin-left: 22px;
  55. }
  56. .details-certifications {
  57. font-weight: 300;
  58. font-size: 16px;
  59. line-height: 20px;
  60. color: var(--primary-color);
  61. margin-top: 1rem;
  62. }
  63. .image-container {
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: center;
  67. .v-img {
  68. width: 80%;
  69. max-width: 500px;
  70. margin: auto;
  71. }
  72. }
  73. </style>