|
@@ -1,85 +1,89 @@
|
|
|
<template>
|
|
<template>
|
|
|
<LayoutContainer>
|
|
<LayoutContainer>
|
|
|
<div>
|
|
<div>
|
|
|
- <v-row class="center-90">
|
|
|
|
|
- <LayoutUISubTitle> Des webinaires pour tous </LayoutUISubTitle>
|
|
|
|
|
- </v-row>
|
|
|
|
|
-
|
|
|
|
|
- <v-row class="center-90">
|
|
|
|
|
- <v-col cols="12" class="section-title">
|
|
|
|
|
- <h3>Simplifiez la gestion et la communication de votre structure</h3>
|
|
|
|
|
-
|
|
|
|
|
- <div class="strong-label">
|
|
|
|
|
- Votre structure culturelle, établissement d’enseignement artistique
|
|
|
|
|
- ou fédération mérite les outils les plus performants du marché pour
|
|
|
|
|
- briller en toute simplicité. Découvrez comment nos outils peuvent
|
|
|
|
|
- transformer votre quotidien :
|
|
|
|
|
- </div>
|
|
|
|
|
- </v-col>
|
|
|
|
|
- </v-row>
|
|
|
|
|
-
|
|
|
|
|
- <v-row class="center-90 catalog">
|
|
|
|
|
- <v-col v-for="(course, index) in courses" :key="index" cols="12" md="4">
|
|
|
|
|
- <v-card class="mb-4">
|
|
|
|
|
- <v-card-text>
|
|
|
|
|
- <div class="title-card-container">
|
|
|
|
|
- <v-img :src="course.imageUrl" :alt="course.imageAlt" />
|
|
|
|
|
-
|
|
|
|
|
- <h4>
|
|
|
|
|
- {{ course.title }}
|
|
|
|
|
- </h4>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <p class="details-card">
|
|
|
|
|
- {{ course.description }}
|
|
|
|
|
- </p>
|
|
|
|
|
-
|
|
|
|
|
- <div class="objectives mt-6">
|
|
|
|
|
- <h6>Objectifs</h6>
|
|
|
|
|
-
|
|
|
|
|
- <ul>
|
|
|
|
|
- <li
|
|
|
|
|
- v-for="(objective, objIndex) in course.objectives"
|
|
|
|
|
- :key="objIndex"
|
|
|
|
|
- >
|
|
|
|
|
- {{ objective }}
|
|
|
|
|
- </li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div class="badge-time">Durée : {{ course.duration }}</div>
|
|
|
|
|
-
|
|
|
|
|
- <div class="program">
|
|
|
|
|
- <h6>Programme</h6>
|
|
|
|
|
-
|
|
|
|
|
- <v-row>
|
|
|
|
|
- <v-col
|
|
|
|
|
- v-for="column in course.additionalObjectives"
|
|
|
|
|
- :key="column.id"
|
|
|
|
|
- cols="6"
|
|
|
|
|
- >
|
|
|
|
|
- <ul>
|
|
|
|
|
- <li
|
|
|
|
|
- v-for="(objective, objIndex) in column.objectives"
|
|
|
|
|
|
|
+ <v-row class="background-block">
|
|
|
|
|
+
|
|
|
|
|
+ <v-row class="center-90">
|
|
|
|
|
+ <LayoutUISubTitle> Des webinaires pour tous </LayoutUISubTitle>
|
|
|
|
|
+ </v-row>
|
|
|
|
|
+
|
|
|
|
|
+ <v-row class="center-90">
|
|
|
|
|
+ <v-col cols="12" class="section-title">
|
|
|
|
|
+ <h3>Simplifiez la gestion et la communication de votre structure</h3>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="strong-label">
|
|
|
|
|
+ Votre structure culturelle, établissement d’enseignement artistique
|
|
|
|
|
+ ou fédération mérite les outils les plus performants du marché pour
|
|
|
|
|
+ briller en toute simplicité. Découvrez comment nos outils peuvent
|
|
|
|
|
+ transformer votre quotidien :
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </v-col>
|
|
|
|
|
+ </v-row>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <v-row class="center-90 catalog">
|
|
|
|
|
+ <v-col v-for="(course, index) in courses" :key="index" cols="12" md="4">
|
|
|
|
|
+ <v-card class="mb-4">
|
|
|
|
|
+ <v-card-text>
|
|
|
|
|
+ <div class="title-card-container">
|
|
|
|
|
+ <v-img :src="course.imageUrl" :alt="course.imageAlt" />
|
|
|
|
|
+
|
|
|
|
|
+ <h4>
|
|
|
|
|
+ {{ course.title }}
|
|
|
|
|
+ </h4>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <p class="details-card">
|
|
|
|
|
+ {{ course.description }}
|
|
|
|
|
+ </p>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="objectives mt-6">
|
|
|
|
|
+ <h6>Objectifs</h6>
|
|
|
|
|
+
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li
|
|
|
|
|
+ v-for="(objective, objIndex) in course.objectives"
|
|
|
:key="objIndex"
|
|
:key="objIndex"
|
|
|
- >
|
|
|
|
|
- {{ objective }}
|
|
|
|
|
- </li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- </v-col>
|
|
|
|
|
- </v-row>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div class="badge-time">
|
|
|
|
|
- {{ course.price }}
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <v-chip class="chip-register" @click="showModal(course.title)">
|
|
|
|
|
- Inscrivez-vous
|
|
|
|
|
- </v-chip>
|
|
|
|
|
- </v-card-text>
|
|
|
|
|
- </v-card>
|
|
|
|
|
- </v-col>
|
|
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ objective }}
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="badge-time">Durée : {{ course.duration }}</div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="program">
|
|
|
|
|
+ <h6>Programme</h6>
|
|
|
|
|
+
|
|
|
|
|
+ <v-row>
|
|
|
|
|
+ <v-col
|
|
|
|
|
+ v-for="column in course.additionalObjectives"
|
|
|
|
|
+ :key="column.id"
|
|
|
|
|
+ cols="6"
|
|
|
|
|
+ >
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li
|
|
|
|
|
+ v-for="(objective, objIndex) in column.objectives"
|
|
|
|
|
+ :key="objIndex"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ objective }}
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </v-col>
|
|
|
|
|
+ </v-row>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="badge-time">
|
|
|
|
|
+ {{ course.price }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <v-chip class="chip-register" @click="showModal(course.title)">
|
|
|
|
|
+ Inscrivez-vous
|
|
|
|
|
+ </v-chip>
|
|
|
|
|
+ </v-card-text>
|
|
|
|
|
+ </v-card>
|
|
|
|
|
+ </v-col>
|
|
|
|
|
+ </v-row>
|
|
|
</v-row>
|
|
</v-row>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -264,7 +268,6 @@ const closeModal = () => {
|
|
|
|
|
|
|
|
h3 {
|
|
h3 {
|
|
|
font-size: 42px;
|
|
font-size: 42px;
|
|
|
- letter-spacing: 0.1rem;
|
|
|
|
|
line-height: 3.5rem;
|
|
line-height: 3.5rem;
|
|
|
margin-bottom: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
|
margin-top: 2rem;
|
|
margin-top: 2rem;
|
|
@@ -273,16 +276,16 @@ const closeModal = () => {
|
|
|
.strong-label {
|
|
.strong-label {
|
|
|
font-size: 1.5rem;
|
|
font-size: 1.5rem;
|
|
|
font-weight: 400 !important;
|
|
font-weight: 400 !important;
|
|
|
- letter-spacing: 0.1rem;
|
|
|
|
|
line-height: 2rem;
|
|
line-height: 2rem;
|
|
|
margin-bottom: 1rem;
|
|
margin-bottom: 1rem;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.catalog {
|
|
|
|
|
- padding: 2rem;
|
|
|
|
|
|
|
+.background-block{
|
|
|
background: var(--neutral-color-alt-light);
|
|
background: var(--neutral-color-alt-light);
|
|
|
-
|
|
|
|
|
|
|
+ padding: 4rem;
|
|
|
|
|
+}
|
|
|
|
|
+.catalog {
|
|
|
.title-card-container {
|
|
.title-card-container {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|