qui-sommes-nous.vue 839 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <LayoutNavigation />
  3. <AboutBanner />
  4. <CommonMenuScroll :menus="menus" class="mb-6" />
  5. <CommonStickyMenu />
  6. <AboutHistoire />
  7. <AboutValeurs />
  8. <AboutLogiciels />
  9. <AboutAgenda />
  10. <AboutChronologie />
  11. <AboutEquipe />
  12. <AboutFAQ />
  13. <LayoutFooterPrefooter />
  14. <LayoutFooter />
  15. </template>
  16. <script setup lang="ts">
  17. const menus = ref([
  18. { id: "Qui-sommes-nous", label: "Qui sommes-nous", element: null },
  19. { id: "valeurs", label: "Nos valeurs", element: null },
  20. { id: "software", label: "Nos logiciels", element: null },
  21. { id: "agenda", label: "L'agenda opentalent", element: null },
  22. { id: "story", label: "Notre Histoire", element: null },
  23. { id: "team", label: "Notre équipe", element: null },
  24. { id: "faq", label: "Aide", element: null },
  25. ]).value;
  26. </script>
  27. <style scoped>
  28. </style>