Qualite.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <AnchoredSection id="satisfaction">
  3. <LayoutContainer>
  4. <v-row class="center-90">
  5. <v-col cols="12">
  6. <LayoutUISubTitle> ÉVALUATION DE LA QUALITÉ </LayoutUISubTitle>
  7. <div class="bloc-quali">
  8. <p>Les participants évaluent nos formations dans l’objectif d’avoir une amélioration continue de nos prestations. En 2023, nos formations ont obtenu un niveau de satisfaction de…</p>
  9. </div>
  10. </v-col>
  11. </v-row>
  12. <v-container>
  13. <v-row class="card-container mb-12">
  14. <v-col lg="3" class="d-flex justify-center align-center small-padding">
  15. <CommonCardStat number="83%" text="Satisfaction formation" />
  16. </v-col>
  17. <v-col lg="3" class="d-flex justify-center align-center">
  18. <CommonCardStat number="87%" text="Satisfaction formateur" />
  19. </v-col>
  20. </v-row>
  21. </v-container>
  22. </LayoutContainer>
  23. </AnchoredSection>
  24. </template>
  25. <script setup lang="ts">
  26. import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
  27. </script>
  28. <style scoped lang="scss">
  29. .bloc-quali {
  30. text-align: justify;
  31. margin: 18px;
  32. }
  33. .card-container {
  34. margin-left: auto;
  35. margin-right: auto;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. }
  40. .card {
  41. color: var(--on-alt-theme) !important;
  42. background: var(--primary-color);
  43. }
  44. </style>