Certification.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <AnchoredSection id="certification">
  3. <LayoutContainer>
  4. <v-row class="center-90 mb-4">
  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-btn
  36. max-width="510px"
  37. :href="
  38. runtimeConfig.public.fileStorageBaseUrl +
  39. '/Certificat_de_Conformite_QUALIOPI.pdf'
  40. "
  41. target="_blank"
  42. >
  43. Visualiser notre certificat Qualiopi
  44. </v-btn>
  45. </v-col>
  46. </v-row>
  47. </LayoutContainer>
  48. </AnchoredSection>
  49. </template>
  50. <script setup lang="ts">
  51. import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
  52. const runtimeConfig = useRuntimeConfig()
  53. </script>
  54. <style scoped lang="scss">
  55. .bloc-certif {
  56. text-align: justify;
  57. margin: 18px;
  58. }
  59. ul {
  60. font-weight: 300;
  61. font-size: 16px;
  62. line-height: 20px;
  63. color: var(--primary-color);
  64. margin-top: 1rem;
  65. margin-left: 22px;
  66. }
  67. .details-certifications {
  68. font-weight: 300;
  69. font-size: 16px;
  70. line-height: 20px;
  71. color: var(--primary-color);
  72. margin-top: 1rem;
  73. }
  74. .image-container {
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: space-around;
  78. align-items: center;
  79. .v-img {
  80. width: 80%;
  81. max-width: 500px;
  82. margin: auto;
  83. }
  84. .v-btn {
  85. background: var(--secondary-color);
  86. color: var(--on-secondary-color);
  87. @media (max-width: 1024px) {
  88. margin-top: 24px;
  89. }
  90. }
  91. }
  92. </style>