| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <template>
- <LayoutContainer>
- <v-col col="12" class="col-gestion">
- <div class="d-flex justify-center align-center flex-column">
- <v-icon size="8" class="fa-solid fa-circle icon-title"></v-icon>
- <h5 class="subtitle">GESTION ET PROMOTION</h5>
- </div>
- <v-row>
- <p class="text-gestion">
- <span class="span-color">Simplifiez</span> vous la vie avec un outil
- <span class="d-inline-flex">
- <v-img src="/images/promotion/piano.jpg" class="rectangle-img">
- </v-img>
- </span>
- tout en un pour la gestion et la promotion
- <span class="d-inline-flex">
- <v-img src="/images/promotion/danse.jpg" class="rectangle-img">
- </v-img>
- </span>
- , de votre structure culturelle.
- <span class="d-inline-flex">
- <v-img src="/images/promotion/cirque.jpg" class="rectangle-img">
- </v-img>
- </span>
- </p>
- </v-row>
- </v-col>
- <v-row>
- <v-col cols="12">
- <v-img src="/images/home/écran.JPG" class="screen" :class="{ zoom: isZoomed }" @mouseover="zoomIn" @mouseleave="zoomOut"></v-img>
- </v-col>
- </v-row>
- <div class="outil">
- <h3 class="text-center text-outil">
- Un outil complet et intuitif <br />
- pour chaque structure
- </h3>
- <v-row>
- <v-col cols="6">
- <v-row class="row-outil">
- <p class="text-outil-details with-border-top mt-3">
- Logiciel de Gestion et communication en ligne
- </p>
- </v-row>
- <v-row class="row-outil">
- <p class="text-outil-details with-border">
- Site Web intégré et simple d’usage
- </p>
- </v-row>
- </v-col>
- <v-col cols="6">
- <v-row class="row-outil">
- <p class="text-outil-details with-border-top">
- Boostez votre visibilité et votre communication avec l’agenda
- culturel
- </p>
- </v-row>
- <v-row class="row-outil">
- <p class="text-outil-details with-border">Communiquez en réseau</p>
- </v-row>
- </v-col>
- </v-row>
- </div>
- </LayoutContainer>
- </template>
- <script setup>
- const isZoomed = ref(false);
- const zoomIn = () => {
- isZoomed.value = true;
- };
- const zoomOut = () => {
- isZoomed.value = false;
- };
- </script>
- <style scoped>
- .screen {
- width: 900px;
- object-fit: cover;
- margin: 2rem auto;
- text-align: center;
- border-radius: 20px;
- transition: transform 0.2s;
- bottom: 25rem;
- }
- .screen:hover {
- transform: scale(1.1);
- }
- .subtitle {
- margin-top: 1rem;
- color: #c1eff0;
- text-align: center;
- font-size: 12px;
- font-family: "Barlow";
- font-weight: 600;
- line-height: 16px;
- letter-spacing: 2.16px;
- text-transform: uppercase;
- }
- .icon-title {
- margin-top: 1rem;
- color: #ffffff;
- margin-right: 1rem;
- }
- .with-border,
- .with-border-top {
- border-bottom: 1px solid #d1cdc7;
- padding-top: 1rem;
- padding-bottom: 1rem;
- }
- .with-border-top {
- border-top: 1px solid #d1cdc7;
- }
- .row-outil {
- margin-left: 4rem;
- }
- .text-outil-details {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 400;
- font-size: 22px;
- line-height: 26px;
- width: 19rem;
- color: #0e2d32;
- margin-left: 10rem;
- margin-bottom: 1rem;
- }
- .text-outil {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 400;
- font-size: 2rem;
- color: #0e2d32;
- margin-top: -20rem;
- margin-bottom: 3rem;
- }
- .col-gestion {
- margin-bottom: 4rem;
- background: #0e2d32;
- }
- .text-gestion {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 4rem;
- line-height: 5.5rem;
- text-align: center;
- color: white;
- height: 20rem;
- margin-top: 3rem;
- width: 55rem;
- margin: 3rem auto 30rem;
- }
- .span-color {
- color: #caf5f4;
- }
- .rectangle-img {
- margin-top: -2rem;
- top: 2rem;
- width: 8rem;
- height: 5rem;
- border-radius: 5rem;
- }
- </style>
|