school.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div>
  3. <LayoutUIPresentation
  4. :pictoImages="pictoData"
  5. :presentationText="presentationData"
  6. :logoSrc="'images/logo/logiciels/Artist-Blanc.png'"
  7. :pricingAmount="'15€'"
  8. :backgroundColor="'rgba(250, 194, 10, 0.2)'"
  9. />
  10. </div>
  11. <LayoutUIContainerVideo
  12. image-url="/images/logiciels/school/screen2.png"
  13. />
  14. </template>
  15. <script setup>
  16. const pictoData = [
  17. { src: '/images/logiciels/artist/picto1.png', text: 'Logiciel de gestion et communication full web' },
  18. { src: '/images/logiciels/artist/picto2.png', text: 'Site web intégré & simple d\'usage' },
  19. { src: '/images/logiciels/artist/picto3.png', text: 'Boostez votre visibilité & communication' },
  20. { src: '/images/logiciels/artist/picto4.png', text: 'Communiquez en réseau' },
  21. { src: '/images/logiciels/artist/picto4.png', text: 'Communiquez en réseau' },
  22. { src: '/images/logiciels/artist/picto4.png', text: 'Communiquez en réseau' }
  23. ];
  24. const presentationData = {
  25. toolTitle: 'Un outil complet en ligne',
  26. toolList: [
  27. 'Logiciel de gestion et communication en ligne',
  28. 'Destiné aux établissements d\'enseignement artistique',
  29. 'Gestion quotidienne et en temps réel',
  30. 'Pilotage complet de votre structure'
  31. ],
  32. characteristicsTitle: 'Des caractéristiques uniques & dédiées'
  33. };
  34. </script>
  35. <style scoped>
  36. :deep().row-custom {
  37. margin-top: -10rem;
  38. }
  39. </style>