| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <template>
- <LayoutContainer>
- <v-row class="gestion">
- <v-col>
- <LayoutUISectionTitle class="alt-theme">
- GESTION ET PROMOTION
- </LayoutUISectionTitle>
- <v-row>
- <p class="text-block">
- <span class="highlight">Simplifiez</span>-vous la vie avec un outil
- <span class="inline-pic-container">
- <v-img
- src="/images/Home_logiciel/ecole_de_musique-piano.jpg"
- />
- </span>
- tout en un pour la gestion et la promotion
- <span class="inline-pic-container">
- <v-img
- src="/images/Home_logiciel/ecole_de_danse-danseuse.jpg"
- />
- </span>
- , de votre structure culturelle.
- <span class="inline-pic-container">
- <v-img
- src="/images/Home_logiciel/ecole_de_cirque.jpg"
- />
- </span>
- </p>
- </v-row>
- </v-col>
- </v-row>
- <v-row class="demo">
- <v-col>
- <v-img
- src="/images/home/écran.JPG"
- class="screen"
- >
- <v-icon icon="fas fa-play" class="play-icon" />
- </v-img>
- </v-col>
- </v-row>
- <v-row class="outil">
- <v-row>
- <v-col>
- <h3>
- Un outil complet et intuitif <br />
- pour chaque structure
- </h3>
- </v-col>
- </v-row>
- <v-row class="pictos">
- <v-col cols="12" lg="6">
- <v-row>
- <img src="/images/pictoHome/network.svg" alt="network" />
- <p>
- Logiciel de gestion et communication en ligne
- </p>
- </v-row>
- <v-row>
- <img src="/images/pictoHome/website.svg" alt="website" />
- <p>
- Site web intégré et simple d’usage
- </p>
- </v-row>
- </v-col>
- <v-col cols="12" lg="6">
- <v-row>
- <img src="/images/pictoHome/visibility.svg" alt="visibility" />
- <p>
- Augmentez votre visibilité avec l'agenda culturel
- </p>
- </v-row>
- <v-row>
- <img src="/images/pictoHome/communication.svg" alt="communication" />
- <p>
- Communiquez en réseau
- </p>
- </v-row>
- </v-col>
- </v-row>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup lang="ts">
- import { useDisplay } from "vuetify";
- const { mdAndUp } = useDisplay()
- </script>
- <style scoped lang="scss">
- .highlight {
- color: var(--secondary-color);
- }
- .v-row.gestion {
- >.v-col {
- margin-bottom: 4rem;
- background: var(--primary-color);
- }
- .text-block {
- font-weight: 600;
- font-size: 3rem;
- text-align: center;
- color: var(--on-primary-color);
- height: 20rem;
- width: 45rem;
- margin: 2rem auto 28rem;
- }
- .inline-pic-container {
- display: inline-flex;
- justify-content: center;
- vertical-align: middle;
- }
- .v-img {
- height: auto;
- width: 7rem;
- max-width: 100%;
- border-radius: 5rem;
- }
- @media (max-width: 960px) {
- >.v-col {
- margin-bottom: 0;
- }
- .text-block {
- font-weight: 500;
- font-size: 2rem;
- line-height: 3.5rem;
- height: 10rem;
- width: 40rem;
- margin: 3rem 2rem 5rem;
- }
- .v-img {
- width: 3.2rem;
- border-radius: 5rem;
- }
- }
- }
- .v-row.demo {
- .screen {
- width: 900px;
- object-fit: cover;
- margin: 2rem auto;
- text-align: center;
- border-radius: 20px;
- transition: transform 0.2s;
- bottom: 30rem;
- }
- @media (max-width: 1280px) {
- .screen {
- margin-top: -12px;
- bottom: 0;
- width: 100%;
- border-radius: 0;
- }
- }
- @media (min-width: 600px) {
- .screen:hover {
- transform: scale(1.1);
- }
- }
- .play-icon {
- position: absolute;
- top: 45%;
- left: 50%;
- transform: translate(-50%, -50%);
- font-size: 3rem;
- color: var(--on-primary-color);
- cursor: pointer;
- z-index: 100;
- }
- }
- .outil {
- margin-bottom: 36px;
- h3 {
- color: var(--primary-color);
- font-size: 2rem;
- font-weight: 400;
- margin-bottom: 3rem;
- text-align: center;
- }
- .pictos {
- .v-row {
- border-bottom: solid 1px var(--on-primary-color-alt);
- margin: 0;
- height: 100px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .v-row:first-child {
- border-top: solid 1px var(--on-primary-color-alt);
- }
- img {
- width: 50px;
- height: 50px;
- margin-right: 2rem;
- }
- p {
- font-weight: 400;
- font-size: 22px;
- line-height: 26px;
- width: 25rem;
- color: var(--primary-color);
- margin-bottom: 1rem;
- }
- @media (max-width: 1280px) {
- }
- }
- }
- </style>
|