Presentation.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <LayoutContainer>
  3. <div id="Presentation">
  4. <CommonPresentation
  5. title="Présentation d'Opentalent School"
  6. :features="features"
  7. :pictos="pictos"
  8. logo-src="/images/logo/logiciels/OT_School-blanc.png"
  9. pricing-amount="20€"
  10. />
  11. </div>
  12. <CommonContainerVideo
  13. image-url="/images/logiciels/school/screen2.png"
  14. />
  15. <CommonContainerVideo
  16. title="Logiciel OpenTalent School"
  17. quote="Pour les petits comme pour les grands établissements d’enseignement artistique"
  18. image-url="/images/logiciels/school/screen2.png"
  19. />
  20. </LayoutContainer>
  21. </template>
  22. <script setup lang="ts">
  23. import { FeaturePicto } from "~/types/interface";
  24. const features = [
  25. "Logiciel de gestion et communication en ligne",
  26. "Destiné aux établissements d'enseignement artistique",
  27. "Gestion quotidienne et en temps réel",
  28. "Pilotage complet de votre structure",
  29. ]
  30. const pictos: Array<FeaturePicto> = [
  31. {
  32. src: "/images/logiciels/school/picto1.png",
  33. text: "Logiciel de gestion et communication full web",
  34. },
  35. {
  36. src: "/images/logiciels/school/picto2.png",
  37. text: "Site web intégré & simple d'usage",
  38. },
  39. {
  40. src: "/images/logiciels/school/picto3.png",
  41. text: "Boostez votre visibilité & communication",
  42. },
  43. { src: "/images/logiciels/school/picto4.png", text: "Communiquez en réseau" },
  44. ];
  45. </script>