Presentation.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <AnchoredSection id="presentation">
  3. <CommonPresentation
  4. title="Présentation d'Opentalent Artist"
  5. :features="features"
  6. :pictos="pictos"
  7. logo-src="/images/logos/opentalent/Logo_Opentalent_Artist-blanc-col.png"
  8. logo-alt="Logo Opentalent Artist - logiciel de gestion et de communication pour les orchestres, les chorales, les compagnies artistiques et troupes"
  9. pricing-amount="11€"
  10. />
  11. <CommonContainerVideo
  12. title="Logiciel OpenTalent Artist"
  13. quote="Le logiciel de gestion et communication au service de votre passion"
  14. />
  15. </AnchoredSection>
  16. </template>
  17. <script setup lang="ts">
  18. import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
  19. import type { FeaturePicto } from '~/types/interface'
  20. const features = [
  21. 'Logiciel de gestion et communication en ligne',
  22. 'Destiné aux structures culturelles (tout statut juridique)',
  23. 'Gestion complète (membres, événements, planning, matériel,...)',
  24. "Une solution simple d'utilisation, intuitive et collaborative",
  25. ]
  26. const pictos: Array<FeaturePicto> = [
  27. {
  28. src: '/images/pages/opentalent_artist/presentation/Logiciel_multi-support.png',
  29. text: 'Logiciel de gestion et communication full web',
  30. },
  31. {
  32. src: '/images/pages/opentalent_artist/presentation/Site_internet_integre.png',
  33. text: "Site web intégré & simple d'usage",
  34. },
  35. {
  36. src: '/images/pages/opentalent_artist/presentation/Boostez_votre_visibilite_et_communication.png',
  37. text: 'Boostez votre visibilité & communication',
  38. },
  39. {
  40. src: '/images/pages/opentalent_artist/presentation/Communication_en_reseau.png',
  41. text: 'Communiquez en réseau',
  42. },
  43. ]
  44. </script>