opentalent_manager.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <CommonMeta
  3. title="Opentalent Manager"
  4. description="Opentalent Manager, la solution sur-mesure pour gérer et communiquer au sein de réseaux culturels. Idéal pour fédérations et institutions."
  5. />
  6. <div class="theme-manager">
  7. <LogicielsTitle>
  8. <template #left-text>School</template>
  9. Opentalent Manager
  10. <template #right-text>Artist</template>
  11. </LogicielsTitle>
  12. <CommonBanner
  13. image-src="/images/logiciels/manager/banner-manager.png"
  14. image-alt="Visuel d’un réseau avec des branches de couleur rouge, bleu et jaune, qui montre les différents types de structures"
  15. square-text="Fédérations, confédérations et collectivités"
  16. logo-src="/images/logo/logiciels/Manager-noir.png"
  17. logo-alt="Logo Opentalent Manager - logiciel de gestion et de communication pour les fédérations, les confédérations et les collectivités"
  18. />
  19. <CommonMenuScroll v-if="lgAndUp" :menus="menus" class="mb-6" />
  20. <CommonActionMenu :actions="stickyMenuActions" />
  21. <LogicielsManagerPresentation />
  22. <LogicielsManagerAvantages />
  23. <div v-if="mdAndUp" class="alt-theme">
  24. <LogicielsManagerFonctionnalites />
  25. </div>
  26. <LogicielsManagerNetwork />
  27. <LogicielsManagerFormation />
  28. <LogicielsManagerReviews />
  29. <LayoutFAQ />
  30. <LayoutFooterSolutions :show-manager="false" />
  31. </div>
  32. </template>
  33. <script setup lang="ts">
  34. import type { MenuScroll, ActionMenuItem } from "~/types/interface";
  35. import { ActionMenuItemType } from "~/types/enum/layout";
  36. import { useDisplay } from "vuetify";
  37. const { mdAndUp, lgAndUp } = useDisplay()
  38. const menus: Array<MenuScroll> = ref([
  39. { anchor: "presentation", label: "Présentation" },
  40. { anchor: "benefits", label: "Avantages" },
  41. { anchor: "functionalities", label: "Fonctionnalités" },
  42. { anchor: "network", label: "Réseau" },
  43. { anchor: "webinars", label: "Formations" },
  44. { anchor: "testimonials", label: "Témoignages" },
  45. ]).value;
  46. const stickyMenuActions: Array<ActionMenuItem> = [
  47. {
  48. type: ActionMenuItemType.FOLLOW_LINK,
  49. color: "primary",
  50. icon: "fa-regular fa-comments icon",
  51. text: "Nous contacter",
  52. url: "/nous-contacter",
  53. },
  54. {
  55. type: ActionMenuItemType.FOLLOW_LINK,
  56. color: "primary",
  57. icon: "fa-brands fa-readme icon",
  58. text: "Brochure",
  59. url: "https://www.opentalent.fr/fileadmin/user_upload/Manager.pdf",
  60. },
  61. {
  62. type: ActionMenuItemType.CALL_US,
  63. color: "secondary",
  64. icon: "fa-solid fa-phone icon",
  65. text: "Nous appeler",
  66. },
  67. ];
  68. </script>
  69. <style scoped>
  70. .theme-manager {
  71. --primary-color: #ffffff;
  72. --on-primary-color: #0e2d32;
  73. --on-primary-color-alt: var(--manager-color);
  74. --secondary-color: var(--manager-color-light);
  75. --action-menu-primary-color: var(--manager-color);
  76. --action-menu-on-primary-color: var(--on-primary-color);
  77. --action-menu-secondary-color: var(--primary-color);
  78. --action-menu-on-secondary-color: var(--on-primary-color);
  79. }
  80. </style>