Presentation.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <AnchoredSection id="presentation">
  3. <LayoutContainer>
  4. <div>
  5. <CommonPresentation
  6. title="Présentation d'Opentalent Manager"
  7. section1title="La solution de mise en réseau des organisations culturelles"
  8. :features="features"
  9. :pictos="pictos"
  10. logo-src="/images/logo/logiciels/OT_Manager-BLANC.png"
  11. pricing-alt-text="Sur devis"
  12. pricing-announcement-text=""
  13. pricing-from-text=""
  14. pricing-period-text=""
  15. />
  16. </div>
  17. <CommonContainerVideo
  18. title="Logiciel OpenTalent Manager"
  19. quote="Une solution unique, collaborative et innovante pour une gestion optimale de votre réseau culturel"
  20. image-url="/images/logiciels/school/screen2.png"
  21. />
  22. </LayoutContainer>
  23. </AnchoredSection>
  24. </template>
  25. <script setup lang="ts">
  26. import type { FeaturePicto } from "~/types/interface";
  27. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  28. const features: Array<string> = [
  29. "Logiciel de gestion et communication en ligne ",
  30. "Répond aux besoins globaux des réseaux culturels ",
  31. "Gestion collaborative ",
  32. "Mise en valeur des activités des membres du réseau ",
  33. ]
  34. const pictos: Array<FeaturePicto> = [
  35. {
  36. src: "/images/logiciels/manager/picto1.png",
  37. text: "Logiciel de gestion et communication full web",
  38. },
  39. {
  40. src: "/images/logiciels/manager/picto2.png",
  41. text: "Site web intégré & simple d'usage",
  42. },
  43. {
  44. src: "/images/logiciels/manager/picto3.png",
  45. text: "Boostez votre visibilité & communication",
  46. },
  47. {
  48. src: "/images/logiciels/manager/picto4.png",
  49. text: "Communiquez en réseau",
  50. },
  51. // {
  52. // src: "/images/logiciels/manager/picto5.png",
  53. // text: "Sur-mesure",
  54. // },
  55. {
  56. src: "/images/logiciels/manager/picto6.png",
  57. text: "Pout tout type de réseau pyramidal",
  58. },
  59. ];
  60. </script>