Promotion.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <LayoutContainer>
  3. <v-col col="12" class="col-gestion">
  4. <div class="d-flex justify-center align-center flex-column">
  5. <v-icon size="8" class="fa-solid fa-circle icon-title"></v-icon>
  6. <h5 class="subtitle">Découvrez les avantages de la solution</h5>
  7. </div>
  8. <v-row>
  9. <p class="text-gestion">
  10. <span class="span-color">Simplifiez</span> vous la vie avec un outil
  11. <span class="d-inline-flex">
  12. <v-img src="/images/promotion/piano.jpg" class="rectangle-img">
  13. </v-img>
  14. </span>
  15. tout en un pour la gestion et la promotion
  16. <span class="d-inline-flex">
  17. <v-img src="/images/promotion/danse.jpg" class="rectangle-img">
  18. </v-img>
  19. </span>
  20. , de votre structure culturelle.
  21. <span class="d-inline-flex">
  22. <v-img src="/images/promotion/cirque.jpg" class="rectangle-img">
  23. </v-img>
  24. </span>
  25. </p>
  26. </v-row>
  27. </v-col>
  28. <v-row>
  29. <v-col cols="12">
  30. <v-img src="/images/home/écran.JPG" class="screen" :class="{ zoom: isZoomed }" @mouseover="zoomIn" @mouseleave="zoomOut"></v-img>
  31. </v-col>
  32. </v-row>
  33. <div class="outil">
  34. <h3 class="text-center text-outil">
  35. Un outil complet et intuitif <br />
  36. pour chaque structure
  37. </h3>
  38. <v-row>
  39. <v-col cols="6">
  40. <v-row class="row-outil">
  41. <p class="text-outil-details with-border-top mt-3">
  42. Logiciel de Gestion et communication en ligne
  43. </p>
  44. </v-row>
  45. <v-row class="row-outil">
  46. <p class="text-outil-details with-border">
  47. Site Web intégré et simple d’usage
  48. </p>
  49. </v-row>
  50. </v-col>
  51. <v-col cols="6">
  52. <v-row class="row-outil">
  53. <p class="text-outil-details with-border-top">
  54. Boostez votre visibilité et votre communication avec l’agenda
  55. culturel
  56. </p>
  57. </v-row>
  58. <v-row class="row-outil">
  59. <p class="text-outil-details with-border">Communiquez en réseau</p>
  60. </v-row>
  61. </v-col>
  62. </v-row>
  63. </div>
  64. </LayoutContainer>
  65. </template>
  66. <script setup>
  67. const isZoomed = ref(false);
  68. const zoomIn = () => {
  69. isZoomed.value = true;
  70. };
  71. const zoomOut = () => {
  72. isZoomed.value = false;
  73. };
  74. </script>
  75. <style scoped>
  76. .screen {
  77. width: 900px;
  78. object-fit: cover;
  79. margin-top: 2rem;
  80. margin-right: auto;
  81. margin-left: auto;
  82. text-align: center;
  83. bottom: 25rem;
  84. border-radius: 20px;
  85. transition: transform .2s;
  86. }
  87. .screen:hover {
  88. transform: scale(1.1);
  89. }
  90. .subtitle {
  91. margin-top: 1rem;
  92. color: #c1eff0;
  93. text-align: center;
  94. font-size: 12px;
  95. font-family: "Barlow";
  96. font-weight: 600;
  97. line-height: 16px;
  98. letter-spacing: 2.16px;
  99. text-transform: uppercase;
  100. }
  101. .icon-title {
  102. margin-top: 1rem;
  103. color: #ffffff;
  104. margin-right: 1rem;
  105. }
  106. .with-border,
  107. .with-border-top {
  108. border-bottom: 1px solid #d1cdc7;
  109. padding-top: 1rem;
  110. padding-bottom: 1rem;
  111. }
  112. .with-border-top {
  113. border-top: 1px solid #d1cdc7;
  114. }
  115. .row-outil {
  116. margin-left: 4rem;
  117. }
  118. .text-outil-details {
  119. font-family: "Barlow";
  120. font-style: normal;
  121. font-weight: 400;
  122. font-size: 2rem;
  123. font-weight: 300;
  124. font-size: 22px;
  125. line-height: 26px;
  126. width: 19rem;
  127. color: #0e2d32;
  128. margin-left: 3rem;
  129. margin-bottom: 1rem;
  130. margin-left: 10rem;
  131. }
  132. .text-outil {
  133. font-family: "Barlow";
  134. font-style: normal;
  135. font-weight: 400;
  136. font-size: 2rem;
  137. color: #0e2d32;
  138. margin-top: -20rem;
  139. margin-bottom: 3rem;
  140. }
  141. .col-gestion {
  142. margin-bottom: 4rem;
  143. background: #0e2d32;
  144. }
  145. .text-gestion {
  146. font-family: "Barlow";
  147. font-style: normal;
  148. font-weight: 600;
  149. font-size: 4rem;
  150. line-height: 5.5rem;
  151. text-align: center;
  152. color: white;
  153. height: 20rem;
  154. margin-top: 3rem;
  155. width: 55rem;
  156. margin-left: auto;
  157. margin-right: auto;
  158. margin-bottom: 30rem;
  159. }
  160. .span-color {
  161. color: #caf5f4;
  162. }
  163. .rectangle-img {
  164. margin-top: -2rem;
  165. top: 2rem;
  166. width: 8rem;
  167. height: 5rem;
  168. border-radius: 5rem;
  169. }
  170. </style>