| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <AnchoredSection id="presentation">
- <CommonPresentation
- title="Présentation d'Opentalent School"
- :features="features"
- :pictos="pictos"
- logo-src="/images/logos/opentalent/Logo_Opentalent_School-blanc-col.png"
- pricing-amount="20€"
- />
- <CommonContainerVideo
- title="Logiciel OpenTalent School"
- quote="Pour les petits comme pour les grands établissements d’enseignement artistique"
- />
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- import type { FeaturePicto } from '~/types/interface'
- const features = [
- 'Logiciel de gestion et communication en ligne',
- "Destiné aux établissements d'enseignement artistique",
- 'Gestion quotidienne et en temps réel',
- 'Pilotage complet de votre structure',
- ]
- const pictos: Array<FeaturePicto> = [
- {
- src: '/images/pages/opentalent_school/presentation/picto1.png',
- text: 'Logiciel de gestion et communication full web',
- },
- {
- src: '/images/pages/opentalent_school/presentation/picto3.png',
- text: "Site web intégré & simple d'usage",
- },
- {
- src: '/images/pages/opentalent_school/presentation/picto2.png',
- text: 'Boostez votre visibilité & communication',
- },
- {
- src: '/images/pages/opentalent_school/presentation/picto4.png',
- text: 'Communiquez en réseau',
- },
- ]
- </script>
|