| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <LayoutNavigation />
- <FormationBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu />
- <FormationPresentation />
- <FormationCatalogue />
- <FormationOPCA />
- <FormationCertification />
- <FormationParticipation />
- <FormationReviews />
- <LayoutFAQ />
- <LayoutFooterSolutionsFooter id="layout-footer" />
- <LayoutFooter id="layout-footer" />
- </template>
- <script setup lang="ts">
- const menus = ref([
- { id: "Presentation", label: "Présentation", element: null },
- { id: "Catalogue", label: "Catalogue", element: null },
- { id: "Financement", label: "Financement", element: null },
- { id: "Certification", label: "Certification", element: null },
- { id: "Inscription", label: "Inscription", element: null },
- { id: "Temoignages", label: "Temoignages", element: null }
- ]).value;
- </script>
- <style scoped>
- </style>
|