opentalent_manager.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div class="theme-manager">
  3. <LayoutNavigation />
  4. <LogicielsManagerBanner />
  5. <CommonMenuScroll :menus="menus" class="mb-6" />
  6. <CommonStickyMenu :actions="stickyMenuActions" />
  7. <LogicielsManagerPresentation />
  8. <LogicielsManagerAvantages />
  9. <div v-if="mdAndUp" class="alt-theme">
  10. <LogicielsManagerFonctionnalites />
  11. </div>
  12. <LogicielsManagerNetwork />
  13. <LogicielsManagerFormation />
  14. <LogicielsManagerReviews class="alt-theme"/>
  15. <LayoutFAQ />
  16. <LayoutFooterSolutions :show-manager="false" />
  17. <LayoutFooter />
  18. </div>
  19. </template>
  20. <script setup lang="ts">
  21. import type { MenuScroll, StickyMenuAction } from "~/types/interface";
  22. import { StickyMenuActionType } from "~/types/enum/layout";
  23. import { useDisplay } from "vuetify";
  24. const { mdAndUp } = useDisplay()
  25. const menus: Array<MenuScroll> = ref([
  26. { anchor: "presentation", label: "Présentation" },
  27. { anchor: "benefits", label: "Avantages" },
  28. { anchor: "functionalities", label: "Fonctionnalités" },
  29. { anchor: "network", label: "Réseau" },
  30. { anchor: "webinars", label: "Formations" },
  31. { anchor: "testimonials", label: "Témoignages" },
  32. ]).value;
  33. const stickyMenuActions: Array<StickyMenuAction> = [
  34. {
  35. type: StickyMenuActionType.FOLLOW_LINK,
  36. bgColor: "red-square",
  37. iconClass: "fa-regular fa-comments icon",
  38. text: "Nous contacter",
  39. url: "/nous-contacter",
  40. },
  41. {
  42. type: StickyMenuActionType.FOLLOW_LINK,
  43. bgColor: "red-square",
  44. iconClass: "fa-brands fa-readme icon",
  45. text: "Brochure",
  46. url: "https://www.opentalent.fr/fileadmin/user_upload/Manager.pdf",
  47. },
  48. {
  49. type: StickyMenuActionType.CALL_US,
  50. bgColor: "darkblue-square",
  51. iconClass: "fa-solid fa-phone icon",
  52. text: "Nous appeler",
  53. },
  54. ];
  55. </script>
  56. <style scoped>
  57. .theme-manager {
  58. --primary-color: #ffffff;
  59. --secondary-color: #f7cdce;
  60. --on-primary-color: #0e2d32;
  61. --on-primary-color-alt: #d8050b;
  62. }
  63. </style>