Presentation.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. </LayoutContainer>
  16. </template>
  17. <script setup lang="ts">
  18. import { FeaturePicto } from "~/types/interface";
  19. const features = [
  20. "Logiciel de gestion et communication en ligne",
  21. "Destiné aux établissements d'enseignement artistique",
  22. "Gestion quotidienne et en temps réel",
  23. "Pilotage complet de votre structure",
  24. ]
  25. const pictos: Array<FeaturePicto> = [
  26. {
  27. src: "/images/logiciels/school/picto1.png",
  28. text: "Logiciel de gestion et communication full web",
  29. },
  30. {
  31. src: "/images/logiciels/school/picto2.png",
  32. text: "Site web intégré & simple d'usage",
  33. },
  34. {
  35. src: "/images/logiciels/school/picto3.png",
  36. text: "Boostez votre visibilité & communication",
  37. },
  38. { src: "/images/logiciels/school/picto4.png", text: "Communiquez en réseau" },
  39. ];
  40. </script>