formations.vue 838 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <LayoutFooterSolutions id="layout-footer" />
  14. <LayoutFooter id="layout-footer" />
  15. </template>
  16. <script setup lang="ts">
  17. import { MenuScroll } from "~/types/interface";
  18. const menus: Array<MenuScroll> = [
  19. { anchor: "presentation", label: "Présentation" },
  20. { anchor: "catalog", label: "Catalogue" },
  21. { anchor: "financing", label: "Financement" },
  22. { anchor: "certification", label: "Certification" },
  23. { anchor: "inscription", label: "Inscription" },
  24. { anchor: "testimonials", label: "Témoignages" }
  25. ];
  26. </script>