Promotion.vue 4.0 KB

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