opentalent-manager.vue 3.1 KB

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