formations.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <LayoutNavigation />
  3. <LayoutUITitlePage>
  4. Formation
  5. <template #subtitle>
  6. Prise en main ou piqûre de rappel,on est toujours à vos côtés.
  7. </template>
  8. </LayoutUITitlePage>
  9. <CommonBanner
  10. imageSrc="images/formation/banner.jpg"
  11. imageAlt="banner"
  12. >
  13. <template #watermark>
  14. Et si vous passiez rapidement à la vitesse supérieure...
  15. </template>
  16. </CommonBanner>
  17. <CommonMenuScroll :menus="menus" class="mb-6" />
  18. <CommonActionMenu />
  19. <FormationPresentation />
  20. <div v-if="lgAndUp">
  21. <FormationCatalogue />
  22. </div>
  23. <FormationOPCA />
  24. <FormationCertification />
  25. <FormationParticipation />
  26. <FormationReviews />
  27. <LayoutFAQ />
  28. <LayoutFooterSolutions />
  29. <LayoutFooter />
  30. </template>
  31. <script setup lang="ts">
  32. import type { MenuScroll } from "~/types/interface";
  33. import { useDisplay } from "vuetify";
  34. const { lgAndUp } = useDisplay()
  35. const menus: Array<MenuScroll> = [
  36. { anchor: "presentation", label: "Présentation" },
  37. { anchor: "catalog", label: "Catalogue" },
  38. { anchor: "financing", label: "Financement" },
  39. { anchor: "certification", label: "Certification" },
  40. { anchor: "inscription", label: "Inscription" },
  41. { anchor: "testimonials", label: "Témoignages" }
  42. ];
  43. </script>