formations.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <div>
  3. <CommonMeta
  4. title="Formation - Opentalent"
  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.webp"
  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. <FormationCertification />
  23. <FormationParticipation />
  24. <FormationReviews />
  25. <LayoutFAQ />
  26. <LayoutFooterPrefooter />
  27. </div>
  28. </template>
  29. <script setup lang="ts">
  30. import { useDisplay } from 'vuetify'
  31. import type { MenuScroll } from '~/types/interface'
  32. const { lgAndUp } = useDisplay()
  33. const menus: Array<MenuScroll> = [
  34. { anchor: 'presentation', label: 'Présentation' },
  35. { anchor: 'catalog', label: 'Catalogue' },
  36. { anchor: 'financing', label: 'Financement' },
  37. { anchor: 'certification', label: 'Certification' },
  38. { anchor: 'inscription', label: 'Inscription' },
  39. { anchor: 'testimonials', label: 'Témoignages' },
  40. ]
  41. </script>