| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <LayoutNavigation />
- <FormationBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu />
- <FormationPresentation />
- <FormationCatalogue />
- <FormationOPCA />
- <FormationCertification />
- <FormationParticipation />
- <FormationReviews />
- <LayoutFAQ />
- <LayoutFooterSolutions id="layout-footer" />
- <LayoutFooter id="layout-footer" />
- </template>
- <script setup lang="ts">
- import { MenuScroll } from "~/types/interface";
- const menus: Array<MenuScroll> = [
- { anchor: "presentation", label: "Présentation" },
- { anchor: "catalog", label: "Catalogue" },
- { anchor: "financing", label: "Financement" },
- { anchor: "certification", label: "Certification" },
- { anchor: "inscription", label: "Inscription" },
- { anchor: "testimonials", label: "Témoignages" }
- ];
- </script>
|