|
|
@@ -1,339 +1,48 @@
|
|
|
+
|
|
|
<template>
|
|
|
- <div id="Fonctionnalites">
|
|
|
- <LayoutContainer>
|
|
|
- <div class="container-green" v-if="!mdAndDown">
|
|
|
- <LayoutUISubTitle
|
|
|
- title-color="#fff"
|
|
|
- :iconSize="6"
|
|
|
- :iconClasses="iconClasses"
|
|
|
- :titleText="'Découvrez TOUTES LES FONCTIONNALITÉS DE NOTRE solution'"
|
|
|
- />
|
|
|
- <LayoutUITitle
|
|
|
- title="Des fonctionnalités adaptées à vos besoins"
|
|
|
- title-color="#fff"
|
|
|
- />
|
|
|
- <v-row>
|
|
|
- <v-col cols="12">
|
|
|
- <LayoutCarouselFonctionnalite
|
|
|
- :cards="cards"
|
|
|
- :functionCarousel="functionCarousel"
|
|
|
- :itemsToShow="itemsToShow"
|
|
|
- />
|
|
|
- </v-col>
|
|
|
- </v-row>
|
|
|
- </div>
|
|
|
- </LayoutContainer>
|
|
|
+ <div>
|
|
|
+ <LayoutUIPresentation
|
|
|
+ :pictoImages="pictoData"
|
|
|
+ :presentationText="presentationData"
|
|
|
+ :logoSrc="'images/logo/logiciels/Artist-Blanc.png'"
|
|
|
+ :pricingAmount="'15€'"
|
|
|
+ :backgroundColor="'rgba(250, 194, 10, 0.2)'"
|
|
|
+ />
|
|
|
</div>
|
|
|
+
|
|
|
+ <LayoutUIContainerVideo
|
|
|
+ image-url="/images/logiciels/school/screen2.png"
|
|
|
+ />
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { ref } from "vue";
|
|
|
-import "vue3-carousel/dist/carousel.css";
|
|
|
-import { useDisplay } from "vuetify/lib/framework.mjs";
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-const { width, mdAndDown } = useDisplay();
|
|
|
-const functionCarousel = ref(null);
|
|
|
-const itemsToShow = computed(() => {
|
|
|
- if (width.value >= 1280 && width.value <= 1920) {
|
|
|
- return 3;
|
|
|
- } else if (width.value > 1920) {
|
|
|
- return 6;
|
|
|
- }
|
|
|
- return props.itemsToShow;
|
|
|
-});
|
|
|
-
|
|
|
-const cards = [
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Agenda.png",
|
|
|
- title: "ESPACES DÉDIÉS",
|
|
|
- list: ["Administration", "Professeurs", "Élèves/Familles"],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Répertoire.png",
|
|
|
-
|
|
|
- title: "RÉPERTOIRE",
|
|
|
- list: [
|
|
|
- "Élèves et responsable légaux",
|
|
|
- "Personnel administratif et professeurs",
|
|
|
- "Contacts extérieurs, partenaires & donateurs",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Pré-inscription.png",
|
|
|
- title: "PRÉINSCRIPTION EN LIGNE",
|
|
|
- list: [
|
|
|
- "Parametrage personnalisé des formulaires & mails automatiques",
|
|
|
- "Gestion des réinscriptions et des nouvelles inscriptionse",
|
|
|
- "Gestion des quotas et du suivi des préinscription en ligne",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Agenda.png",
|
|
|
- title: "AGENDA",
|
|
|
- list: [
|
|
|
- "Création et gestion des cours, examens, événements et prestations pédagogiques",
|
|
|
- "Planning interactif avec un contrôle de cohérence",
|
|
|
- "Gestion des présences et absences",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Parc-matériel.png",
|
|
|
- title: "PARC MATÉRIEL ",
|
|
|
- list: [
|
|
|
- "Gestion de votre parc matériel (instruments, costumes, accessoires..)",
|
|
|
- "Planning interactif avec un contrôle de cohérence",
|
|
|
- "Gestion des présences et absences",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Suivi-pédagogique.png",
|
|
|
-
|
|
|
- title: "SUIVI PÉDAGOGIQUE",
|
|
|
- list: [
|
|
|
- "Gestion du cursus pédagogique (critères personnalisables)",
|
|
|
- "Création des examens et envoi des convocations",
|
|
|
- "Édition des bulletins de notes",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Facture.png",
|
|
|
-
|
|
|
- title: "FACTURATION",
|
|
|
- list: [
|
|
|
- "Facturation automatisée selon différents critères",
|
|
|
- "Suivi des règlements et gestion des relances",
|
|
|
- "n options : de nombreux moyens de paiement",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Communication.png",
|
|
|
-
|
|
|
- title: "COMMUNICATION",
|
|
|
- list: [
|
|
|
- "Édition et envoi de courriers, de mails ou de SMS*",
|
|
|
- "Création de modèles de courriers, mails ou SMS",
|
|
|
- "Outil de publipostage intégré pour un envoi personnalisé",
|
|
|
- ],
|
|
|
- option: "* en option",
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/internet.png",
|
|
|
-
|
|
|
- title: "SITE INTERNET ",
|
|
|
- list: [
|
|
|
- "Gestion intégrée au logiciel",
|
|
|
- "Mise à jour automatique des membres et événements sur votre site",
|
|
|
- "Possibilité de personnalisé votre template",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Statistiques.png",
|
|
|
-
|
|
|
- title: "STATISTIQUE",
|
|
|
- list: [
|
|
|
- "Rapport d'activité complet en fonction de vos activités",
|
|
|
- "Personnalisation du rapport d'activité grâce aux différents formats proposés lors du téléchargement",
|
|
|
- "Export des données du logiciel pour une analyse complète",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Agenda.png",
|
|
|
-
|
|
|
- title: "RÉSEAU CMF ",
|
|
|
- list: [
|
|
|
- "Accès au répertoire du réseau",
|
|
|
- "Renouvellement de votre adhésion fédérale",
|
|
|
- "Gestion de l'assurance CMF",
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- logo: "images/logiciels/school/fonctionnalites/Promotion.png",
|
|
|
|
|
|
- title: "PROMOTION DE VOTRE STRUCTURE & VOS ÉVÉNEMENTS ",
|
|
|
- list: [
|
|
|
- "Sur votre site internet intégré",
|
|
|
- "Sur l'agenda de la CMF",
|
|
|
- "Sur l'Agenda culturel Opentalent ",
|
|
|
- ],
|
|
|
- },
|
|
|
+const pictoData = [
|
|
|
+ { src: '/images/logiciels/artist/picto1.png', text: 'Logiciel de gestion et communication full web' },
|
|
|
+ { src: '/images/logiciels/artist/picto2.png', text: 'Site web intégré & simple d\'usage' },
|
|
|
+ { src: '/images/logiciels/artist/picto3.png', text: 'Boostez votre visibilité & communication' },
|
|
|
+ { src: '/images/logiciels/artist/picto4.png', text: 'Communiquez en réseau' },
|
|
|
+ { src: '/images/logiciels/artist/picto4.png', text: 'Communiquez en réseau' },
|
|
|
+ { src: '/images/logiciels/artist/picto4.png', text: 'Communiquez en réseau' }
|
|
|
];
|
|
|
-</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
-.v-card-title-container {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
-}
|
|
|
-.logo-fonctionnalite {
|
|
|
- width: 5rem;
|
|
|
- height: 5rem;
|
|
|
-}
|
|
|
-
|
|
|
-.list-detail {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 300;
|
|
|
- font-size: 1.2rem;
|
|
|
- line-height: 1.2rem;
|
|
|
- margin-bottom: 1rem;
|
|
|
- color: #000000;
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
-.card-title {
|
|
|
- white-space: pre-wrap;
|
|
|
- font-size: 1.1rem;
|
|
|
-}
|
|
|
-.carousel {
|
|
|
- margin-left: 2rem;
|
|
|
- margin-right: 2rem;
|
|
|
-}
|
|
|
-
|
|
|
-.card.active-card {
|
|
|
-}
|
|
|
-
|
|
|
-.title-container {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-.subtitle-avantage {
|
|
|
- font-family: "Barlow";
|
|
|
- font-weight: 600;
|
|
|
- font-size: 3rem;
|
|
|
- line-height: 18px;
|
|
|
- color: white;
|
|
|
-}
|
|
|
-.subtitle {
|
|
|
- color: white;
|
|
|
- font-family: "Barlow";
|
|
|
- font-size: 1rem;
|
|
|
- font-style: normal;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 15px;
|
|
|
- letter-spacing: 1.8px;
|
|
|
- text-transform: uppercase;
|
|
|
-}
|
|
|
-
|
|
|
-.icon-title {
|
|
|
- color: rgba(32, 147, 190, 0.6);
|
|
|
- margin-right: 0.5rem;
|
|
|
-}
|
|
|
-.card {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 300;
|
|
|
- transition: transform 0.3s;
|
|
|
- min-width: 30%;
|
|
|
- max-width: 30%;
|
|
|
-}
|
|
|
-
|
|
|
-.card.active-card {
|
|
|
- transform: scale(1.05);
|
|
|
-}
|
|
|
-.carousel-button {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- width: 4rem;
|
|
|
- height: 4rem;
|
|
|
- background-color: transparent;
|
|
|
- border: 2px solid #fff;
|
|
|
- cursor: pointer;
|
|
|
- margin-right: 1rem;
|
|
|
- margin-top: 1rem;
|
|
|
-}
|
|
|
-
|
|
|
-.carousel-button i {
|
|
|
- color: #fff;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-.reviewer-name {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 500;
|
|
|
- font-size: 20px;
|
|
|
- line-height: 24px;
|
|
|
- color: rgba(32, 147, 190);
|
|
|
-}
|
|
|
-
|
|
|
-.reviewer-status {
|
|
|
- font-family: "Barlow";
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 600;
|
|
|
- font-size: 12px;
|
|
|
- line-height: 16px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- letter-spacing: 0.18em;
|
|
|
- text-transform: uppercase;
|
|
|
-}
|
|
|
-
|
|
|
-.reviewer-structure {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 300;
|
|
|
- font-size: 0.8rem;
|
|
|
- line-height: 14px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-bottom: 1rem;
|
|
|
- color: #071b1f;
|
|
|
-}
|
|
|
-
|
|
|
-.review-description {
|
|
|
- text-align: left;
|
|
|
-}
|
|
|
-.card-footer {
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- margin-right: 2rem;
|
|
|
-}
|
|
|
-
|
|
|
-.card-text {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
- font-weight: 300;
|
|
|
- font-size: 1rem;
|
|
|
- line-height: 1rem;
|
|
|
- height: 12rem;
|
|
|
-}
|
|
|
-.reviews-title {
|
|
|
- color: #fff;
|
|
|
- font-family: "Barlow";
|
|
|
- font-size: 1rem;
|
|
|
- font-style: normal;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 15px;
|
|
|
- letter-spacing: 1.8px;
|
|
|
- text-transform: uppercase;
|
|
|
- margin-left: 1rem;
|
|
|
- width: 10rem;
|
|
|
-}
|
|
|
+const presentationData = {
|
|
|
+ toolTitle: 'Un outil complet en ligne',
|
|
|
+ toolList: [
|
|
|
+ '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'
|
|
|
+ ],
|
|
|
+ characteristicsTitle: 'Des caractéristiques uniques & dédiées'
|
|
|
+};
|
|
|
+</script>
|
|
|
|
|
|
-.card {
|
|
|
- min-height: 35rem;
|
|
|
- max-height: 35rem;
|
|
|
- border-radius: 1rem;
|
|
|
-}
|
|
|
|
|
|
-.v-card {
|
|
|
- border-radius: 1rem;
|
|
|
- min-height: 25rem;
|
|
|
- max-width: 20rem;
|
|
|
- min-width: 20rem;
|
|
|
-}
|
|
|
+<style scoped>
|
|
|
|
|
|
-.card-container {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- margin-bottom: 3rem;
|
|
|
- margin-right: 2rem;
|
|
|
+:deep().row-custom {
|
|
|
+ margin-top: -10rem;
|
|
|
}
|
|
|
|
|
|
-.container-green {
|
|
|
- background-color: #0e2d32;
|
|
|
-}
|
|
|
-</style>
|
|
|
+</style>
|