Promotion.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="gestion">
  4. <v-col>
  5. <LayoutUISectionTitle class="alt-theme">
  6. GESTION ET PROMOTION
  7. </LayoutUISectionTitle>
  8. <v-row>
  9. <p class="text-block">
  10. <span class="highlight">Simplifiez</span>-vous la vie avec un outil
  11. <span class="inline-pic-container">
  12. <v-img
  13. src="/images/Home_logiciel/ecole_de_musique-piano.jpg"
  14. />
  15. </span>
  16. tout en un pour la gestion et la promotion
  17. <span class="inline-pic-container">
  18. <v-img
  19. src="/images/Home_logiciel/ecole_de_danse-danseuse.jpg"
  20. />
  21. </span>
  22. , de votre structure culturelle.
  23. <span class="inline-pic-container">
  24. <v-img
  25. src="/images/Home_logiciel/ecole_de_cirque.jpg"
  26. />
  27. </span>
  28. </p>
  29. </v-row>
  30. </v-col>
  31. </v-row>
  32. <v-row class="demo">
  33. <v-col>
  34. <v-img
  35. src="/images/home/écran.JPG"
  36. class="screen"
  37. >
  38. <v-icon icon="fas fa-play" class="play-icon" />
  39. </v-img>
  40. </v-col>
  41. </v-row>
  42. <section class="outil">
  43. <v-row>
  44. <v-col>
  45. <h3>
  46. Un outil complet et intuitif <br />
  47. pour chaque structure
  48. </h3>
  49. </v-col>
  50. </v-row>
  51. <v-row class="pictos">
  52. <v-col cols="12" lg="6">
  53. <v-row>
  54. <img src="/images/pictoHome/network.svg" alt="network" />
  55. <p>
  56. Logiciel de gestion et communication en ligne
  57. </p>
  58. </v-row>
  59. <v-row>
  60. <img src="/images/pictoHome/website.svg" alt="website" />
  61. <p>
  62. Site web intégré et simple d’usage
  63. </p>
  64. </v-row>
  65. </v-col>
  66. <v-col cols="12" lg="6">
  67. <v-row>
  68. <img src="/images/pictoHome/visibility.svg" alt="visibility" />
  69. <p>
  70. Augmentez votre visibilité avec l'agenda culturel
  71. </p>
  72. </v-row>
  73. <v-row>
  74. <img src="/images/pictoHome/communication.svg" alt="communication" />
  75. <p>
  76. Communiquez en réseau
  77. </p>
  78. </v-row>
  79. </v-col>
  80. </v-row>
  81. </section>
  82. </LayoutContainer>
  83. </template>
  84. <script setup lang="ts">
  85. </script>
  86. <style scoped lang="scss">
  87. .highlight {
  88. color: var(--secondary-color);
  89. }
  90. .v-row.gestion {
  91. >.v-col {
  92. margin-bottom: 4rem;
  93. background: var(--primary-color);
  94. }
  95. .text-block {
  96. font-weight: 600;
  97. font-size: 3rem;
  98. text-align: center;
  99. color: var(--on-primary-color);
  100. height: 20rem;
  101. width: 45rem;
  102. margin: 2rem auto 28rem;
  103. }
  104. .inline-pic-container {
  105. display: inline-flex;
  106. justify-content: center;
  107. vertical-align: middle;
  108. }
  109. .v-img {
  110. height: auto;
  111. width: 7rem;
  112. max-width: 100%;
  113. border-radius: 5rem;
  114. }
  115. @media (max-width: 960px) {
  116. .text-block {
  117. font-weight: 500;
  118. font-size: 2rem;
  119. line-height: 3.5rem;
  120. height: 10rem;
  121. width: 40rem;
  122. margin: 3rem 2rem 5rem;
  123. }
  124. .v-img {
  125. width: 3.2rem;
  126. border-radius: 5rem;
  127. }
  128. }
  129. }
  130. .v-row.demo {
  131. margin-bottom: -28rem;
  132. .screen {
  133. width: 900px;
  134. object-fit: cover;
  135. margin: 2rem auto;
  136. text-align: center;
  137. border-radius: 20px;
  138. transition: transform 0.2s;
  139. bottom: 30rem;
  140. }
  141. @media (max-width: 960px) {
  142. .screen {
  143. width: 100%;
  144. }
  145. }
  146. @media (min-width: 600px) {
  147. .screen:hover {
  148. transform: scale(1.1);
  149. }
  150. }
  151. .play-icon {
  152. position: absolute;
  153. top: 45%;
  154. left: 50%;
  155. transform: translate(-50%, -50%);
  156. font-size: 3rem;
  157. color: var(--on-primary-color);
  158. cursor: pointer;
  159. z-index: 100;
  160. }
  161. }
  162. section.outil {
  163. margin-bottom: 36px;
  164. h3 {
  165. color: var(--primary-color);
  166. font-size: 2rem;
  167. font-weight: 400;
  168. margin-bottom: 3rem;
  169. text-align: center;
  170. }
  171. .pictos {
  172. .v-row {
  173. border-bottom: solid 1px var(--on-primary-color-alt);
  174. margin: 0;
  175. height: 100px;
  176. display: flex;
  177. align-items: center;
  178. justify-content: center;
  179. }
  180. .v-row:first-child {
  181. border-top: solid 1px var(--on-primary-color-alt);
  182. }
  183. img {
  184. width: 50px;
  185. height: 50px;
  186. margin-right: 2rem;
  187. }
  188. p {
  189. font-weight: 400;
  190. font-size: 22px;
  191. line-height: 26px;
  192. width: 25rem;
  193. color: var(--primary-color);
  194. margin-bottom: 1rem;
  195. }
  196. }
  197. }
  198. </style>