Presentation.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <LayoutContainer>
  3. <div id="Presentation">
  4. <CommonPresentation
  5. :pictoImages="pictoData"
  6. :presentationText="presentationData"
  7. :backgroundColor="'rgba(216, 5, 11, 0.2)'"
  8. />
  9. </div>
  10. <CommonContainerVideo image-url="/images/logiciels/school/screen2.png" />
  11. </LayoutContainer>
  12. </template>
  13. <script setup>
  14. const pictoData = [
  15. {
  16. src: "/images/logiciels/manager/picto1.png",
  17. text: "Logiciel de gestion et communication full web",
  18. },
  19. {
  20. src: "/images/logiciels/manager/picto2.png",
  21. text: "Site web intégré & simple d'usage",
  22. },
  23. {
  24. src: "/images/logiciels/manager/picto3.png",
  25. text: "Boostez votre visibilité & communication",
  26. },
  27. {
  28. src: "/images/logiciels/manager/picto4.png",
  29. text: "Communiquez en réseau",
  30. },
  31. // {
  32. // src: "/images/logiciels/manager/picto5.png",
  33. // text: "Sur-mesure",
  34. // },
  35. {
  36. src: "/images/logiciels/manager/picto6.png",
  37. text: "Pout tout type de réseau pyramidal",
  38. },
  39. ];
  40. const presentationData = {
  41. toolTitle: "La solution de mise en réseau des organisations culturelles ",
  42. toolList: [
  43. "Logiciel de gestion et communication en ligne ",
  44. "Répond aux besoins globaux des réseaux culturels ",
  45. "Gestion collaborative ",
  46. "Mise en valeur des activités des membres du réseau ",
  47. ],
  48. characteristicsTitle: "Des caractéristiques uniques & dédiées",
  49. };
  50. </script>
  51. <style scoped>
  52. :deep().pricing-big-text {
  53. font-size: 1.5rem;
  54. font-weight: normal;
  55. line-height: 1.5rem;
  56. margin-top: 1.5rem;
  57. }
  58. :deep().picto-group {
  59. display: flex;
  60. flex-direction: column;
  61. margin-left: -4rem;
  62. }
  63. :deep().picto-container {
  64. display: flex;
  65. flex-direction: row;
  66. justify-content: space-between;
  67. }
  68. </style>