| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <AnchoredSection id="webinars">
- <LayoutContainer>
- <div class="alt-theme pt-6 mt-12">
- <v-row>
- <LayoutUISubTitle>
- Nos accompagnements sur-mesure
- </LayoutUISubTitle>
- </v-row>
- <v-row class="formation pb-6 align-center">
- <v-col
- cols="6"
- v-for="(formation, index) in formations"
- :key="index"
- >
- <div class="mb-6">
- <v-img
- :src="formation.image"
- class="background-img"
- />
- </div>
- <div>
- <h4>
- {{ formation.sessions }}
- </h4>
- <h3>
- {{ formation.title }}
- </h3>
- <p class="details mb-5">
- {{ formation.description }}
- </p>
- <v-btn :to="formation.link">
- {{ formation.buttonText }}
- </v-btn>
- </div>
- </v-col>
- </v-row>
- </div>
- <!--
- TODO: Déplacer le "Quelques chiffres" dans un composant à part,
- voir comment gérer ça avec les anchored sections
- -->
- <v-row class="align-center">
- <v-col cols="12">
- <v-row no-gutters>
- <LayoutUISubTitle>
- Quelques chiffres
- </LayoutUISubTitle>
- <LayoutUITitle>
- Pour les petits comme pour les GRANDS établissements d'enseignement artistique
- </LayoutUITitle>
- </v-row>
- </v-col>
- </v-row>
- <v-container>
- <v-row class="mb-12">
- <v-col
- cols="12"
- lg="3"
- class="d-flex justify-center align-center small-padding"
- >
- <CommonCardStat
- number="30 > 1 500"
- text="Élèves"
- />
- </v-col>
- <v-col cols="12" lg="3" class="d-flex justify-center align-center">
- <CommonCardStat
- number="234"
- text="Clients"
- />
- </v-col>
- <v-col cols="12" lg="3" class="d-flex justify-center align-center">
- <CommonCardStat
- number="20 304"
- text="Utilisateurs"
- />
- </v-col>
- <v-col cols="12" lg="3" class="d-flex justify-center align-center">
- <CommonCardStat
- number="13"
- text="Années d'expérience"
- />
- </v-col>
- </v-row>
- </v-container>
- <v-row />
- <CommonCarouselClients :items="items" >
- <template v-slot:title>
- Plus de <span class="alt-color">5000 structures</span> nous font confiance
- </template>
- </CommonCarouselClients>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
- import type { Formation } from "~/types/interface";
- const formations: Array<Formation> = [
- {
- image: "/images/logiciels/school/formation.png",
- overlayClass: "image-overlay1",
- sessions: "3 formations disponibles",
- title: "Des formations adaptées à chacun - en ligne",
- description:
- "Parce qu’on sait qu’appréhender un nouvel outil peut-être fastidieux et que vous n’avez pas de temps à perdre,...",
- buttonText: "Découvrir toutes nos formations",
- link: "/formations",
- },
- {
- image: "/images/logiciels/school/webinaire.png",
- overlayClass: "image-overlay2",
- sessions: "Toutes nos sessions",
- title: "Trouvez le webinaire qu'il vous faut ",
- description:
- "Des explications précises sur certains modules du logiciel Opentalent School, c'est possible pour aller encore plus loin...",
- buttonText: "Découvrir nos webinaires ",
- link: "/webinaires",
- },
- ];
- const items: Array<{ src: string }> = [
- { src: "/images/reviews/school/review1.svg" },
- { src: "/images/reviews/school/review2.png" },
- { src: "/images/reviews/school/review3.png" },
- { src: "/images/reviews/school/review4.jpeg" },
- { src: "/images/reviews/school/review5.jpeg" },
- { src: "/images/reviews/school/review6.jpeg" },
- ];
- </script>
- <style scoped>
- .v-row {
- max-width: 1600px;
- margin: 0 auto;
- }
- :deep(h2) {
- width: 60rem;
- }
- .background-img {
- width: 600px;
- height: 400px;
- background-size: cover;
- background-position: center;
- }
- .formation {
- .v-btn {
- font-family: "Barlow", serif;
- font-style: normal;
- width: 30rem;
- height: 4rem;
- font-weight: 500;
- font-size: 1.5rem;
- line-height: 18px;
- background: transparent;
- color: #eff9fb;
- border: 1px solid #eff9fb;
- border-radius: 0.5rem;
- text-transform: none;
- }
- h3 {
- font-weight: 500;
- font-size: 1.8rem;
- line-height: 26px;
- color: #ffffff;
- margin-bottom: 3rem;
- }
- h4 {
- font-weight: 500;
- font-size: 1.8rem;
- line-height: 26px;
- color: #ffffff;
- margin-bottom: 3rem;
- }
- .details {
- font-weight: 300;
- font-size: 1.2rem;
- line-height: 1.5rem;
- color: #eff9fb;
- }
- }
- </style>
|