Promotion.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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. import { useDisplay } from "vuetify";
  86. const { mdAndDown } = useDisplay();
  87. </script>
  88. <style scoped lang="scss">
  89. .highlight {
  90. color: var(--secondary-color);
  91. }
  92. .v-row.gestion {
  93. >.v-col {
  94. margin-bottom: 4rem;
  95. background: var(--primary-color);
  96. }
  97. .text-block {
  98. font-weight: 600;
  99. font-size: 3rem;
  100. text-align: center;
  101. color: var(--on-primary-color);
  102. height: 20rem;
  103. width: 45rem;
  104. margin: 2rem auto 28rem;
  105. }
  106. .inline-pic-container {
  107. display: inline-flex;
  108. justify-content: center;
  109. vertical-align: middle;
  110. }
  111. .v-img {
  112. height: auto;
  113. width: 7rem;
  114. max-width: 100%;
  115. border-radius: 5rem;
  116. }
  117. @media (max-width: 960px) {
  118. .text-block {
  119. font-weight: 500;
  120. font-size: 2rem;
  121. line-height: 3.5rem;
  122. height: 10rem;
  123. width: 40rem;
  124. margin: 3rem 2rem 5rem;
  125. }
  126. .v-img {
  127. width: 3.2rem;
  128. border-radius: 5rem;
  129. }
  130. }
  131. }
  132. .v-row.demo {
  133. margin-bottom: -28rem;
  134. .screen {
  135. width: 900px;
  136. object-fit: cover;
  137. margin: 2rem auto;
  138. text-align: center;
  139. border-radius: 20px;
  140. transition: transform 0.2s;
  141. bottom: 30rem;
  142. }
  143. @media (max-width: 960px) {
  144. .screen {
  145. width: 100%;
  146. }
  147. }
  148. @media (min-width: 600px) {
  149. .screen:hover {
  150. transform: scale(1.1);
  151. }
  152. }
  153. .play-icon {
  154. position: absolute;
  155. top: 45%;
  156. left: 50%;
  157. transform: translate(-50%, -50%);
  158. font-size: 3rem;
  159. color: var(--on-primary-color);
  160. cursor: pointer;
  161. z-index: 100;
  162. }
  163. }
  164. section.outil {
  165. margin-bottom: 36px;
  166. h3 {
  167. color: var(--primary-color);
  168. font-size: 2rem;
  169. font-weight: 400;
  170. margin-bottom: 3rem;
  171. text-align: center;
  172. }
  173. .pictos {
  174. .v-row {
  175. border-bottom: solid 1px var(--on-primary-color-alt);
  176. margin: 0;
  177. height: 100px;
  178. display: flex;
  179. align-items: center;
  180. justify-content: center;
  181. }
  182. .v-row:first-child {
  183. border-top: solid 1px var(--on-primary-color-alt);
  184. }
  185. img {
  186. width: 50px;
  187. height: 50px;
  188. margin-right: 2rem;
  189. }
  190. p {
  191. font-weight: 400;
  192. font-size: 22px;
  193. line-height: 26px;
  194. width: 25rem;
  195. color: var(--primary-color);
  196. margin-bottom: 1rem;
  197. }
  198. }
  199. }
  200. </style>