Certification.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <AnchoredSection id="certification">
  3. <LayoutContainer>
  4. <v-row class="center-90">
  5. <v-col cols="12" md="5">
  6. <LayoutUISubTitle>
  7. DES FORMATIONS CERTIFIÉES
  8. </LayoutUISubTitle>
  9. <LayoutUITitle>
  10. Certification Qualiopi : Marque de certification
  11. </LayoutUITitle>
  12. <div class="bloc-certif ml-12 mt-6 mr-12">
  13. <p>
  14. Nos formations sont certifiées Qualiopi - Actions de formation.
  15. </p>
  16. <p class="details-certifications">
  17. La marque « Qualiopi » vise à :
  18. </p>
  19. <ul>
  20. <li>
  21. attester de la qualité du processus mis en œuvre par les
  22. prestataires d’actions concourant au développement des
  23. compétences ;
  24. </li>
  25. <li>
  26. permettre une plus grande lisibilité de l’offre de formation
  27. auprès des entreprises et des usagers.
  28. </li>
  29. </ul>
  30. </div>
  31. </v-col>
  32. <v-col cols="12" md="7">
  33. <v-img src="/images/formation/qualiopi.jpg" />
  34. </v-col>
  35. </v-row>
  36. </LayoutContainer>
  37. </AnchoredSection>
  38. </template>
  39. <script setup lang="ts">
  40. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  41. </script>
  42. <style scoped lang="scss">
  43. .bloc-certif {
  44. text-align: justify;
  45. }
  46. ul {
  47. font-weight: 300;
  48. font-size: 16px;
  49. line-height: 20px;
  50. color: var(--primary-color);
  51. margin-top: 1rem;
  52. }
  53. .details-certifications {
  54. font-weight: 300;
  55. font-size: 16px;
  56. line-height: 20px;
  57. color: var(--primary-color);
  58. margin-top: 1rem;
  59. }
  60. </style>