| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <div class="theme-manager">
- <LayoutNavigation />
- <LogicielsManagerBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu :actions="stickyMenuActions" />
- <LogicielsManagerPresentation />
- <LogicielsManagerAvantages />
- <div v-if="mdAndUp" class="alt-theme">
- <LogicielsManagerFonctionnalites />
- </div>
- <LogicielsManagerNetwork />
- <LogicielsManagerFormation />
- <LogicielsManagerReviews class="alt-theme"/>
- <LayoutFAQ />
- <LayoutFooterSolutions :show-manager="false" />
- <LayoutFooter />
- </div>
- </template>
- <script setup lang="ts">
- import type { MenuScroll, StickyMenuAction } from "~/types/interface";
- import { StickyMenuActionType } from "~/types/enum/layout";
- import { useDisplay } from "vuetify";
- const { mdAndUp } = useDisplay()
- const menus: Array<MenuScroll> = ref([
- { anchor: "presentation", label: "Présentation" },
- { anchor: "benefits", label: "Avantages" },
- { anchor: "functionalities", label: "Fonctionnalités" },
- { anchor: "network", label: "Réseau" },
- { anchor: "webinars", label: "Formations" },
- { anchor: "testimonials", label: "Témoignages" },
- ]).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>
|