| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <div>
- <CommonMeta
- title="Opentalent Manager - Logiciels de gestion et de communication pour les fédérations, les confédérations et les institutions publiques"
- 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."
- />
- <div class="theme-manager">
- <LogicielsTitle>
- <template #left-text>School</template>
- Opentalent Manager
- <template #right-text>Artist</template>
- </LogicielsTitle>
- <CommonBanner
- image-src="/images/pages/opentalent_manager/banner/Solution_de_mise_en_reseau_Opentalent_Manager.webp"
- image-alt="Visuel d’un réseau avec des branches de couleur rouge, bleu et jaune, qui montre les différents types de structures"
- square-text="Fédérations, confédérations et collectivités"
- logo-src="/images/logos/opentalent/Logo_Opentalent_Manager-gris.png"
- logo-alt="Logo Opentalent Manager - logiciel de gestion et de communication pour les fédérations, les confédérations et les collectivités"
- />
- <CommonMenuScroll v-if="lgAndUp" :menus="menus" class="mb-6" />
- <CommonActionMenu :actions="stickyMenuActions" />
- <LogicielsManagerPresentation />
- <LogicielsManagerAvantages />
- <div class="alt-theme">
- <LogicielsManagerFonctionnalites />
- </div>
- <LogicielsManagerNetwork />
- <LogicielsManagerFormation />
- <LogicielsManagerReviews />
- <LayoutFAQ />
- <LayoutFooterPrefooter />
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { useDisplay } from 'vuetify'
- import type { MenuScroll, ActionMenuItem } from '~/types/interface'
- import { ActionMenuItemType } from '~/types/enum/layout'
- const { lgAndUp } = 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<ActionMenuItem> = [
- {
- type: ActionMenuItemType.ASK_FOR_A_DEMO,
- color: 'primary',
- icon: 'fa-regular fa-comments icon',
- text: 'Nous contacter',
- url: '/nous-contacter',
- },
- {
- type: ActionMenuItemType.FOLLOW_LINK,
- color: 'primary',
- icon: 'fa-brands fa-readme icon',
- text: 'Brochure',
- url: '/files/Depliant_Opentalent_Manager_2024.pdf',
- target: '_blank',
- },
- {
- type: ActionMenuItemType.CALL_US,
- color: 'secondary',
- icon: 'fa-solid fa-phone icon',
- text: 'Nous appeler',
- },
- ]
- </script>
- <style scoped>
- .theme-manager {
- --primary-color: #ffffff;
- --on-primary-color: #0e2d32;
- --on-primary-color-alt: var(--manager-color);
- --secondary-color: var(--manager-color-light);
- --action-menu-primary-color: var(--manager-color);
- --action-menu-on-primary-color: var(--primary-color);
- --action-menu-secondary-color: var(--on-primary-color);
- --action-menu-on-secondary-color: var(--primary-color);
- }
- </style>
|