| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- <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"
- />
- <h5 class="subtitle">
- GESTION ET PROMOTION
- </h5>
- </div>
- <v-row>
- <p :class="smAndDown ? 'text-gestion-sm' : '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="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
- />
- </span>
- tout en un pour la gestion et la promotion
- <span class="d-inline-flex">
- <v-img
- src="/images/promotion/danse.jpg"
- :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
- />
- </span>
- , de votre structure culturelle.
- <span class="d-inline-flex">
- <v-img
- src="/images/promotion/cirque.jpg"
- :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
- />
- </span>
- </p>
- </v-row>
- </v-col>
- <v-row>
- <v-col cols="12">
- <v-img
- src="/images/home/écran.JPG"
- :class="[
- smAndDown ? 'screen-sm' : 'screen',
- !smAndDown && isZoomed ? 'zoom' : '',
- ]"
- @mouseover="zoomIn"
- @mouseleave="zoomOut"
- />
- </v-col>
- </v-row>
- <div class="outil">
- <h3 class="text-center text-outil">
- Un outil complet et intuitif <br>
- pour chaque structure
- </h3>
- <div v-if="smAndDown">
- <v-row>
- <div class="horizontal-line" />
- <div class="picto-group">
- <v-img
- src="/images/pictoHome/picto1.svg"
- class="picto-sm"
- />
- <p class="text-outil-sm">
- Logiciel de Gestion et communication en ligne
- </p>
- </div>
- </v-row>
- <v-row>
- <div class="horizontal-line" />
- <div class="picto-group">
- <v-img
- src="/images/pictoHome/picto2.svg"
- class="picto-sm"
- />
- <p class="text-outil-sm">
- Site Web intégré et simple d’usage
- </p>
- </div>
- </v-row>
- <v-row>
- <div class="horizontal-line" />
- <div class="picto-group">
- <v-img
- src="/images/pictoHome/picto3.svg"
- class="picto-sm"
- />
- <p class="text-outil-sm">
- Boostez votre visibilité et votre communication avec l’agenda
- culturel
- </p>
- </div>
- </v-row>
- <v-row>
- <div class="horizontal-line" />
- <div class="picto-group mb-12">
- <v-img
- src="/images/pictoHome/picto4.svg"
- class="picto-sm"
- />
- <p class="text-outil-sm">
- Communiquez en réseau
- </p>
- </div>
- </v-row>
- </div>
- <div v-if="!smAndDown">
- <v-row>
- <v-col cols="6">
- <div class="horizontal-line" />
- <v-row class="picto-container">
- <img
- src="/images/pictoHome/picto1.svg"
- class="picto"
- >
- <p class="text-outil-details">
- Logiciel de Gestion et communication en ligne
- </p>
- </v-row>
- <div class="horizontal-line" />
- <v-row class="picto-container">
- <img
- src="/images/pictoHome/picto2.svg"
- class="picto"
- >
- <p class="text-outil-details">
- Site Web intégré et simple d’usage
- </p>
- </v-row>
- <div class="horizontal-line" />
- </v-col>
- <v-col cols="6">
- <div class="horizontal-line" />
- <v-row class="picto-container">
- <img
- src="/images/pictoHome/picto3.svg"
- class="picto"
- >
- <p class="text-outil-details">
- Boostez votre visibilité et votre communication avec l’agenda
- culturel
- </p>
- </v-row>
- <div class="horizontal-line" />
- <v-row class="picto-container">
- <img
- src="/images/pictoHome/picto4.svg"
- class="picto"
- >
- <p class="text-outil-details">
- Communiquez en réseau
- </p>
- </v-row>
- <div class="horizontal-line" />
- </v-col>
- </v-row>
- </div>
- </div>
- </LayoutContainer>
- </template>
- <script setup>
- import { ref } from "vue";
- import { useDisplay } from "vuetify";
- const { smAndDown } = useDisplay();
- const isZoomed = ref(false);
- const zoomIn = () => {
- isZoomed.value = true;
- };
- const zoomOut = () => {
- isZoomed.value = false;
- };
- </script>
- <style scoped>
- .picto-container {
- display: flex;
- align-items: center;
- justify-content: center;
- /** rapproché du centre */
- margin-top: 1rem;
- margin-bottom: 1rem;
- }
- .horizontal-line {
- width: 80%;
- margin-left: auto;
- margin-right: auto;
- height: 1px;
- background-color: #d1cdc7;
- margin-bottom: 1rem;
- }
- .text-outil-sm {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 400;
- font-size: 22px;
- line-height: 26px;
- width: 19rem;
- color: #0e2d32;
- }
- .picto-group {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 1rem;
- margin-bottom: 1rem;
- }
- .picto-sm {
- margin-left: 4rem;
- width: 50px;
- height: 50px;
- margin-right: 2rem;
- }
- .picto {
- width: 50px;
- height: 50px;
- margin-right: 2rem;
- }
- .screen-sm {
- width: 70%;
- object-fit: cover;
- margin: 2rem auto;
- border-radius: 20px;
- bottom: 15rem;
- margin-bottom: 8rem;
- }
- .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 {
- font-size: 1.5rem;
- line-height: 1rem;
- margin-top: 1rem;
- color: #c1eff0;
- text-align: center;
- font-family: "Barlow";
- 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: 25rem;
- color: #0e2d32;
- 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-sm {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 2.5rem;
- line-height: 3.5rem;
- text-align: center;
- color: white;
- height: 20rem;
- margin-top: 3rem;
- width: 40rem;
- margin: 3rem 2rem 10rem;
- }
- .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-sm {
- margin-top: -3rem;
- top: 2rem;
- width: 6rem;
- height: 5rem;
- border-radius: 5rem;
- }
- .rectangle-img {
- margin-top: -2rem;
- top: 2rem;
- width: 8rem;
- height: 5rem;
- border-radius: 5rem;
- }
- </style>
|