|
|
@@ -2,27 +2,32 @@
|
|
|
<LayoutContainer>
|
|
|
<div>
|
|
|
<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>
|
|
|
+ <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 :
|
|
|
+ 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-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">
|
|
|
@@ -42,8 +47,8 @@
|
|
|
|
|
|
<ul>
|
|
|
<li
|
|
|
- v-for="(objective, objIndex) in course.objectives"
|
|
|
- :key="objIndex"
|
|
|
+ v-for="(objective, objIndex) in course.objectives"
|
|
|
+ :key="objIndex"
|
|
|
>
|
|
|
{{ objective }}
|
|
|
</li>
|
|
|
@@ -57,14 +62,14 @@
|
|
|
|
|
|
<v-row>
|
|
|
<v-col
|
|
|
- v-for="column in course.additionalObjectives"
|
|
|
- :key="column.id"
|
|
|
- cols="6"
|
|
|
+ v-for="column in course.additionalObjectives"
|
|
|
+ :key="column.id"
|
|
|
+ cols="6"
|
|
|
>
|
|
|
<ul>
|
|
|
<li
|
|
|
- v-for="(objective, objIndex) in column.objectives"
|
|
|
- :key="objIndex"
|
|
|
+ v-for="(objective, objIndex) in column.objectives"
|
|
|
+ :key="objIndex"
|
|
|
>
|
|
|
{{ objective }}
|
|
|
</li>
|
|
|
@@ -96,18 +101,15 @@
|
|
|
class="calendar-modal"
|
|
|
>
|
|
|
<v-card
|
|
|
- title="Inscrivez vous"
|
|
|
- class="d-flex flex-column align-center alt-theme"
|
|
|
+ title="Inscrivez-vous"
|
|
|
+ class="d-flex flex-column align-center alt-theme"
|
|
|
>
|
|
|
<v-card-text>
|
|
|
<h4 class="title-inscription text-center mt-4">
|
|
|
Vous y êtes presque !
|
|
|
</h4>
|
|
|
|
|
|
- <iframe
|
|
|
- :src="webinaireCalendars[selectedWebinar]"
|
|
|
- height="700"
|
|
|
- />
|
|
|
+ <iframe :src="webinaireCalendars[selectedWebinar]" height="700" />
|
|
|
</v-card-text>
|
|
|
|
|
|
<v-card-actions>
|
|
|
@@ -281,7 +283,7 @@ const closeModal = () => {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-.background-block{
|
|
|
+.background-block {
|
|
|
background: var(--neutral-color-alt-light);
|
|
|
padding: 4rem;
|
|
|
}
|
|
|
@@ -381,7 +383,7 @@ const closeModal = () => {
|
|
|
h4 {
|
|
|
font-weight: 600;
|
|
|
font-size: 2rem;
|
|
|
- line-height: 18px;
|
|
|
+ line-height: 32px;
|
|
|
margin-bottom: 2rem;
|
|
|
}
|
|
|
|