| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <div class="theme-manager">
- <LayoutNavigation />
- <LogicielsManagerBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu :actions="stickyMenuActions" />
- <LogicielsManagerPresentation />
- <LogicielsManagerAvantages />
- <LogicielsManagerFonctionnalites />
- <LogicielsManagerPyramide />
- <LogicielsManagerFormation />
- <LogicielsManagerReviews />
- <LayoutFAQ />
- <LayoutFooterSolutionsFooter />
- <LayoutFooter />
- </div>
- </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>
- .theme-manager {
- --primary-color: #ffffff;
- --secondary-color: #f7cdce;
- --on-primary-color: #0e2d32;
- --on-primary-color-alt: #d8050b;
- }
- </style>
|