| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <template>
- <LayoutNavigation />
- <LogicielsManagerBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu :actions="stickyMenuActions" />
- <LogicielsManagerPresentation />
- <LogicielsManagerAvantages />
- <LogicielsManagerFonctionnalites />
- <LogicielsManagerPyramide />
- <LogicielsManagerFormation />
- <LogicielsManagerReviews />
- <LayoutFAQ />
- <LayoutFooterSolutionsFooter />
- <LayoutFooter />
- </template>
- <script setup lang="ts">
- import { StickyMenuAction } from "~/types/interface";
- import { StickyMenuActionType } from "~/types/enum/layout";
- const menus = ref([
- { id: "Presentation", label: "Présentation", element: null },
- { id: "Avantages", label: "Avantages", element: null },
- { id: "Fonctionnalites", label: "Fonctionnalités", element: null },
- { id: "Formations", label: "Formations", element: null },
- { id: "Temoignages", label: "Témoignages", element: null },
- ]).value;
- const stickyMenuActions: Array<StickyMenuAction> = [
- {
- type: StickyMenuActionType.FOLLOW_LINK,
- bgColor: "red-square",
- iconClass: "fa-regular fa-comments icon",
- text: "Nous contacter",
- url: "/nous-contacter",
- },
- {
- type: StickyMenuActionType.FOLLOW_LINK,
- bgColor: "red-square",
- iconClass: "fa-brands fa-readme icon",
- text: "Brochure",
- url: "https://www.opentalent.fr/fileadmin/user_upload/Manager.pdf",
- },
- {
- type: StickyMenuActionType.CALL_US,
- bgColor: "darkblue-square",
- iconClass: "fa-solid fa-phone icon",
- text: "Nous appeler",
- },
- ];
- </script>
- <style scoped>
- </style>
|