Certification.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <AnchoredSection id="certification">
  3. <LayoutContainer>
  4. <v-row>
  5. <v-col cols="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="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. .v-row {
  44. width: 90%;
  45. margin-left: auto;
  46. margin-right: auto;
  47. }
  48. .bloc-certif {
  49. text-align: justify;
  50. }
  51. ul {
  52. font-weight: 300;
  53. font-size: 16px;
  54. line-height: 20px;
  55. color: #091d20;
  56. margin-top: 1rem;
  57. }
  58. .details-certifications {
  59. font-weight: 300;
  60. font-size: 16px;
  61. line-height: 20px;
  62. color: #091d20;
  63. margin-top: 1rem;
  64. }
  65. </style>