Promotion.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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" />
  6. <h5 class="subtitle">GESTION ET PROMOTION</h5>
  7. </div>
  8. <v-row>
  9. <p :class="smAndDown ? 'text-gestion-sm' : 'text-gestion'">
  10. <span class="span-color">Simplifiez</span>-vous la vie avec un outil
  11. <span class="d-inline-flex align-center">
  12. <v-img
  13. src="/images/promotion/piano.jpg"
  14. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  15. />
  16. </span>
  17. tout en un pour la gestion et la promotion
  18. <span class="d-inline-flex align-center">
  19. <v-img
  20. src="/images/promotion/danse.jpg"
  21. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  22. />
  23. </span>
  24. , de votre structure culturelle.
  25. <span class="d-inline-flex align-center">
  26. <v-img
  27. src="/images/promotion/cirque.jpg"
  28. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  29. />
  30. </span>
  31. </p>
  32. </v-row>
  33. </v-col>
  34. <v-row>
  35. <v-col cols="12">
  36. <v-img
  37. src="/images/home/écran.JPG"
  38. :class="[
  39. smAndDown ? 'screen-sm' : 'screen',
  40. !smAndDown && isZoomed ? 'zoom' : '',
  41. ]"
  42. @mouseover="zoomIn"
  43. @mouseleave="zoomOut"
  44. />
  45. </v-col>
  46. </v-row>
  47. <div class="outil">
  48. <h3 class="text-center text-outil">
  49. Un outil complet et intuitif <br />
  50. pour chaque structure
  51. </h3>
  52. <div v-if="!smAndDown">
  53. <v-row>
  54. <v-col cols="6">
  55. <div class="horizontal-line" />
  56. <v-row class="picto-container">
  57. <img src="/images/pictoHome/picto2.svg" class="picto" />
  58. <p class="text-outil-details">
  59. Logiciel de Gestion et communication en ligne
  60. </p>
  61. </v-row>
  62. <div class="horizontal-line" />
  63. <v-row class="picto-container">
  64. <img src="/images/pictoHome/picto3.svg" class="picto" />
  65. <p class="text-outil-details">
  66. Site Web intégré et simple d’usage
  67. </p>
  68. </v-row>
  69. <div class="horizontal-line" />
  70. </v-col>
  71. <v-col cols="6">
  72. <div class="horizontal-line" />
  73. <v-row class="picto-container">
  74. <img src="/images/pictoHome/picto1.svg" class="picto" />
  75. <p class="text-outil-details">
  76. Augmentez votre visibilité avec l'agenda culturel
  77. </p>
  78. </v-row>
  79. <div class="horizontal-line" />
  80. <v-row class="picto-container">
  81. <img src="/images/pictoHome/picto4.svg" class="picto" />
  82. <p class="text-outil-details">Communiquez en réseau</p>
  83. </v-row>
  84. <div class="horizontal-line" />
  85. </v-col>
  86. </v-row>
  87. </div>
  88. </div>
  89. </LayoutContainer>
  90. </template>
  91. <script setup>
  92. import { ref } from "vue";
  93. import { useDisplay } from "vuetify";
  94. const { smAndDown } = useDisplay();
  95. const isZoomed = ref(false);
  96. const zoomIn = () => {
  97. isZoomed.value = true;
  98. };
  99. const zoomOut = () => {
  100. isZoomed.value = false;
  101. };
  102. </script>
  103. <style scoped>
  104. .text-gestion .d-inline-flex {
  105. vertical-align: middle;
  106. }
  107. .rectangle-img,
  108. .rectangle-img-sm {
  109. max-width: 100%;
  110. height: auto;
  111. }
  112. .align-center {
  113. align-items: center;
  114. display: inline-flex;
  115. }
  116. .picto-container {
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. margin-top: 1rem;
  121. margin-bottom: 1rem;
  122. }
  123. .horizontal-line {
  124. width: 80%;
  125. margin-left: auto;
  126. margin-right: auto;
  127. height: 1px;
  128. background-color: #d1cdc7;
  129. margin-bottom: 1rem;
  130. }
  131. .text-outil-sm {
  132. font-weight: 400;
  133. font-size: 22px;
  134. line-height: 26px;
  135. width: 19rem;
  136. color: #0e2d32;
  137. }
  138. .picto-group {
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. margin-top: 1rem;
  143. margin-bottom: 1rem;
  144. }
  145. .picto-sm {
  146. margin-left: 4rem;
  147. width: 50px;
  148. height: 50px;
  149. margin-right: 2rem;
  150. }
  151. .picto {
  152. width: 50px;
  153. height: 50px;
  154. margin-right: 2rem;
  155. }
  156. .screen-sm {
  157. width: 70%;
  158. object-fit: cover;
  159. margin: 2rem auto;
  160. border-radius: 20px;
  161. bottom: 15rem;
  162. margin-bottom: 8rem;
  163. }
  164. .screen {
  165. width: 900px;
  166. object-fit: cover;
  167. margin: 2rem auto;
  168. text-align: center;
  169. border-radius: 20px;
  170. transition: transform 0.2s;
  171. bottom: 32rem;
  172. }
  173. .screen:hover {
  174. transform: scale(1.1);
  175. }
  176. .subtitle {
  177. font-size: 1rem;
  178. line-height: 1rem;
  179. margin-top: 1rem;
  180. color: #c1eff0;
  181. text-align: center;
  182. letter-spacing: 2.16px;
  183. text-transform: uppercase;
  184. }
  185. .icon-title {
  186. margin-top: 1rem;
  187. color: #ffffff;
  188. margin-right: 1rem;
  189. }
  190. .with-border,
  191. .with-border-top {
  192. border-bottom: 1px solid #d1cdc7;
  193. padding-top: 1rem;
  194. padding-bottom: 1rem;
  195. }
  196. .with-border-top {
  197. border-top: 1px solid #d1cdc7;
  198. }
  199. .row-outil {
  200. margin-left: 4rem;
  201. }
  202. .text-outil-details {
  203. font-weight: 400;
  204. font-size: 22px;
  205. line-height: 26px;
  206. width: 25rem;
  207. color: #0e2d32;
  208. margin-bottom: 1rem;
  209. }
  210. .text-outil {
  211. font-weight: 400;
  212. font-size: 2rem;
  213. color: #0e2d32;
  214. margin-top: -30rem;
  215. margin-bottom: 3rem;
  216. }
  217. .col-gestion {
  218. margin-bottom: 4rem;
  219. background: #0e2d32;
  220. }
  221. .text-gestion-sm {
  222. font-weight: 500;
  223. font-size: 2.5rem;
  224. line-height: 3.5rem;
  225. text-align: center;
  226. color: white;
  227. height: 20rem;
  228. margin-top: 3rem;
  229. width: 40rem;
  230. margin: 3rem 2rem 10rem;
  231. }
  232. .v-container {
  233. padding: 0;
  234. }
  235. .text-gestion {
  236. font-weight: 600;
  237. font-size: 3rem;
  238. text-align: center;
  239. color: white;
  240. height: 20rem;
  241. margin-top: 3rem;
  242. width: 45rem;
  243. margin: 2rem auto 28rem;
  244. }
  245. .span-color {
  246. color: #caf5f4;
  247. }
  248. .rectangle-img {
  249. width: 7rem;
  250. border-radius: 5rem;
  251. }
  252. </style>