formations.vue 1.2 KB

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