| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <LayoutContainer>
- <div id="Presentation">
- <CommonPresentation
- :pictoImages="pictoData"
- :presentationText="presentationData"
- :backgroundColor="'rgba(216, 5, 11, 0.2)'"
- />
- </div>
- <CommonContainerVideo image-url="/images/logiciels/school/screen2.png" />
- </LayoutContainer>
- </template>
- <script setup>
- const pictoData = [
- {
- src: "/images/logiciels/manager/picto1.png",
- text: "Logiciel de gestion et communication full web",
- },
- {
- src: "/images/logiciels/manager/picto2.png",
- text: "Site web intégré & simple d'usage",
- },
- {
- src: "/images/logiciels/manager/picto3.png",
- text: "Boostez votre visibilité & communication",
- },
- {
- src: "/images/logiciels/manager/picto4.png",
- text: "Communiquez en réseau",
- },
- // {
- // src: "/images/logiciels/manager/picto5.png",
- // text: "Sur-mesure",
- // },
- {
- src: "/images/logiciels/manager/picto6.png",
- text: "Pout tout type de réseau pyramidal",
- },
- ];
- const presentationData = {
- toolTitle: "La solution de mise en réseau des organisations culturelles ",
- toolList: [
- "Logiciel de gestion et communication en ligne ",
- "Répond aux besoins globaux des réseaux culturels ",
- "Gestion collaborative ",
- "Mise en valeur des activités des membres du réseau ",
- ],
- characteristicsTitle: "Des caractéristiques uniques & dédiées",
- };
- </script>
- <style scoped>
- :deep().pricing-big-text {
- font-size: 1.5rem;
- font-weight: normal;
- line-height: 1.5rem;
- margin-top: 1.5rem;
- }
- :deep().picto-group {
- display: flex;
- flex-direction: column;
- margin-left: -4rem;
- }
- :deep().picto-container {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- </style>
|