formations.vue 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <LayoutNavigation />
  3. <FormationBanner />
  4. <CommonMenuScroll :menus="menus" class="mb-6" />
  5. <CommonStickyMenu />
  6. <FormationPresentation />
  7. <FormationCatalogue />
  8. <FormationOPCA />
  9. <FormationCertification />
  10. <FormationParticipation />
  11. <FormationReviews />
  12. <LayoutFAQ />
  13. <LayoutFooterSolutionsFooter id="layout-footer" />
  14. <LayoutFooter id="layout-footer" />
  15. </template>
  16. <script setup lang="ts">
  17. const menus = ref([
  18. { id: "Presentation", label: "Présentation", element: null },
  19. { id: "Catalogue", label: "Catalogue", element: null },
  20. { id: "Financement", label: "Financement", element: null },
  21. { id: "Certification", label: "Certification", element: null },
  22. { id: "Inscription", label: "Inscription", element: null },
  23. { id: "Temoignages", label: "Temoignages", element: null }
  24. ]).value;
  25. </script>
  26. <style scoped>
  27. </style>