Promotion.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. <v-row 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. <v-col cols="3">
  55. <img src="/images/pictoHome/network.svg" alt="network" />
  56. </v-col>
  57. <v-col cols="9">
  58. <p>
  59. Logiciel de gestion et communication en ligne
  60. </p>
  61. </v-col>
  62. </v-row>
  63. <v-row>
  64. <v-col cols="3">
  65. <img src="/images/pictoHome/website.svg" alt="website" />
  66. </v-col>
  67. <v-col cols="9">
  68. <p>
  69. Site web intégré et simple d’usage
  70. </p>
  71. </v-col>
  72. </v-row>
  73. </v-col>
  74. <v-col cols="12" lg="6">
  75. <v-row>
  76. <v-col cols="3">
  77. <img src="/images/pictoHome/visibility.svg" alt="visibility" />
  78. </v-col>
  79. <v-col cols="9">
  80. <p>
  81. Augmentez votre visibilité avec l'agenda culturel
  82. </p>
  83. </v-col>
  84. </v-row>
  85. <v-row>
  86. <v-col cols="3">
  87. <img src="/images/pictoHome/communication.svg" alt="communication" />
  88. </v-col>
  89. <v-col cols="9">
  90. <p>
  91. Communiquez en réseau
  92. </p>
  93. </v-col>
  94. </v-row>
  95. </v-col>
  96. </v-row>
  97. </v-row>
  98. </LayoutContainer>
  99. </template>
  100. <script setup lang="ts">
  101. import { useDisplay } from "vuetify";
  102. const { mdAndUp } = useDisplay()
  103. </script>
  104. <style scoped lang="scss">
  105. .highlight {
  106. color: var(--secondary-color);
  107. }
  108. .v-row.gestion {
  109. >.v-col {
  110. margin-bottom: 4rem;
  111. background: var(--primary-color);
  112. }
  113. .text-block {
  114. font-weight: 600;
  115. font-size: 3rem;
  116. text-align: center;
  117. color: var(--on-primary-color);
  118. height: 20rem;
  119. width: 45rem;
  120. margin: 2rem auto 28rem;
  121. }
  122. .inline-pic-container {
  123. display: inline-flex;
  124. justify-content: center;
  125. vertical-align: middle;
  126. }
  127. .v-img {
  128. height: auto;
  129. width: 7rem;
  130. max-width: 100%;
  131. border-radius: 5rem;
  132. }
  133. @media (max-width: 960px) {
  134. >.v-col {
  135. margin-bottom: 0;
  136. }
  137. .text-block {
  138. font-weight: 500;
  139. font-size: 2rem;
  140. line-height: 3.5rem;
  141. height: 10rem;
  142. width: 40rem;
  143. margin: 3rem 2rem 5rem;
  144. }
  145. .v-img {
  146. width: 3.2rem;
  147. border-radius: 5rem;
  148. }
  149. }
  150. }
  151. .v-row.demo {
  152. .screen {
  153. width: 900px;
  154. object-fit: cover;
  155. margin: 2rem auto;
  156. text-align: center;
  157. border-radius: 20px;
  158. transition: transform 0.2s;
  159. bottom: 30rem;
  160. }
  161. @media (max-width: 1280px) {
  162. .screen {
  163. margin-top: -12px;
  164. bottom: 0;
  165. width: 100%;
  166. border-radius: 0;
  167. }
  168. }
  169. @media (min-width: 600px) {
  170. .screen:hover {
  171. transform: scale(1.1);
  172. }
  173. }
  174. .play-icon {
  175. position: absolute;
  176. top: 45%;
  177. left: 50%;
  178. transform: translate(-50%, -50%);
  179. font-size: 3rem;
  180. color: var(--on-primary-color);
  181. cursor: pointer;
  182. z-index: 100;
  183. }
  184. }
  185. .outil {
  186. margin-bottom: 36px;
  187. @media (max-width: 600px) {
  188. width: 90%;
  189. margin-left: auto;
  190. margin-right: auto;
  191. }
  192. h3 {
  193. color: var(--primary-color);
  194. font-size: 2rem;
  195. font-weight: 400;
  196. margin-bottom: 3rem;
  197. text-align: center;
  198. }
  199. .pictos {
  200. .v-row {
  201. border-bottom: solid 2px var(--on-neutral-color-extra-light);
  202. margin: 0;
  203. height: 100px;
  204. display: flex;
  205. align-items: center;
  206. justify-content: center;
  207. @media (max-width: 600px) {
  208. width: 90%;
  209. }
  210. }
  211. .v-col:first-child .v-row:first-child, .v-col-12:first-child .v-row:first-child {
  212. border-top: solid 2px var(--on-neutral-color-extra-light);
  213. }
  214. >.v-col-12 {
  215. padding-top : 0;
  216. padding-bottom : 0;
  217. }
  218. img {
  219. width: 50px;
  220. height: 50px;
  221. margin-right: 2rem;
  222. }
  223. p {
  224. font-weight: 400;
  225. font-size: 22px;
  226. line-height: 26px;
  227. width: 25rem;
  228. max-width: 100%;
  229. color: var(--primary-color);
  230. margin-bottom: 1rem;
  231. @media (max-width: 600px) {
  232. width: 90%;
  233. margin-bottom: 0;
  234. }
  235. }
  236. }
  237. }
  238. </style>