formations.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <div>
  3. <CommonMeta
  4. title="Formation Opentalent sur nos logiciels de gestion et de communication"
  5. description="Maîtrisez votre gestion culturelle avec Opentalent, du débutant à l’utilisateur avancé. Nos formations augmentent vos compétences pour une administration optimisée."
  6. />
  7. <LayoutUITitlePage>
  8. Formations
  9. <template #subtitle>
  10. Prise en main ou piqûre de rappel, nous sommes toujours à vos côtés.
  11. </template>
  12. </LayoutUITitlePage>
  13. <CommonBanner
  14. image-src="/images/pages/formations/banner/Formations_Opentalent.jpg"
  15. image-alt="Formation dans une salle de réunion ou 5 personnes regardent un écran"
  16. />
  17. <CommonMenuScroll v-if="lgAndUp" :menus="menus" class="mb-6" />
  18. <CommonActionMenu />
  19. <FormationPresentation />
  20. <FormationCatalogue />
  21. <FormationOPCA />
  22. <FormationQualite />
  23. <FormationCertification />
  24. <FormationParticipation />
  25. <FormationReviews />
  26. <LayoutFAQ />
  27. <LayoutFooterPrefooter />
  28. </div>
  29. </template>
  30. <script setup lang="ts">
  31. import { useDisplay } from 'vuetify'
  32. import type { MenuScroll } from '~/types/interface'
  33. const { lgAndUp } = useDisplay()
  34. const menus: Array<MenuScroll> = [
  35. { anchor: 'presentation', label: 'Présentation' },
  36. { anchor: 'catalog', label: 'Catalogue' },
  37. { anchor: 'financing', label: 'Financement' },
  38. { anchor: 'satisfaction', label: 'Satisfaction' },
  39. { anchor: 'certification', label: 'Certification' },
  40. { anchor: 'inscription', label: 'Inscription' },
  41. { anchor: 'testimonials', label: 'Témoignages' },
  42. ]
  43. </script>