Presentation.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <LayoutContainer>
  3. <div id="Presentation">
  4. <LayoutUIPresentation
  5. :pictoImages="pictoData"
  6. :presentationText="presentationData"
  7. :logoSrc="'images/logo/logiciels/School-Blanc.png'"
  8. />
  9. </div>
  10. <LayoutUIContainerVideo
  11. image-url="/images/logiciels/school/screen2.png"
  12. />
  13. </LayoutContainer>
  14. </template>
  15. <script setup>
  16. const pictoData = [
  17. {
  18. src: "/images/logiciels/school/picto1.png",
  19. text: "Logiciel de gestion et communication full web",
  20. },
  21. {
  22. src: "/images/logiciels/school/picto2.png",
  23. text: "Site web intégré & simple d'usage",
  24. },
  25. {
  26. src: "/images/logiciels/school/picto3.png",
  27. text: "Boostez votre visibilité & communication",
  28. },
  29. { src: "/images/logiciels/school/picto4.png", text: "Communiquez en réseau" },
  30. ];
  31. const presentationData = {
  32. toolTitle: "Un outil complet en ligne",
  33. toolList: [
  34. "Logiciel de gestion et communication en ligne",
  35. "Destiné aux établissements d'enseignement artistique",
  36. "Gestion quotidienne et en temps réel",
  37. "Pilotage complet de votre structure",
  38. ],
  39. characteristicsTitle: "Des caractéristiques uniques & dédiées",
  40. };
  41. </script>
  42. <style scoped>
  43. .container-green {
  44. background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%), rgba(7, 27, 31, 0.3);
  45. height: 40rem;
  46. }
  47. .outil-ul {
  48. font-family: "Barlow";
  49. margin-left: 1rem;
  50. font-weight: 300;
  51. font-size: 1rem;
  52. line-height: 1.5rem;
  53. }
  54. .citation-school {
  55. font-style: italic;
  56. font-weight: 300;
  57. font-size: 2rem;
  58. width: 38rem;
  59. line-height: 40px;
  60. color: #ffffff;
  61. font-style: italic;
  62. margin-top: 27rem;
  63. margin-left: 2rem;
  64. }
  65. .subtitle-logiciel {
  66. display: flex;
  67. align-items: center;
  68. font-weight: 600;
  69. font-size: 1.5rem;
  70. line-height: 18px;
  71. color: #ffffff;
  72. margin-left: 5rem;
  73. margin-right: 15rem;
  74. margin-top: 4rem;
  75. top: 10rem;
  76. }
  77. .icon-logiciel {
  78. color: #fac20a;
  79. margin-right: 1rem;
  80. }
  81. </style>