| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <LayoutNavigation />
- <AboutBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu />
- <AboutHistoire />
- <AboutValeurs />
- <AboutLogiciels />
- <AboutAgenda />
- <AboutChronologie />
- <AboutEquipe />
- <AboutFAQ />
- <LayoutFooterPrefooter />
- <LayoutFooter />
- </template>
- <script setup lang="ts">
- const menus = ref([
- { id: "Qui-sommes-nous", label: "Qui sommes-nous", element: null },
- { id: "valeurs", label: "Nos valeurs", element: null },
- { id: "software", label: "Nos logiciels", element: null },
- { id: "agenda", label: "L'agenda opentalent", element: null },
- { id: "story", label: "Notre Histoire", element: null },
- { id: "team", label: "Notre équipe", element: null },
- { id: "faq", label: "Aide", element: null },
- ]).value;
- </script>
- <style scoped>
- </style>
|