Presentation.vue 1.8 KB

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