Promotion.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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. alt="Vignette d’une personne jouant sur un piano"
  15. />
  16. </span>
  17. tout en un pour la gestion et la promotion
  18. <span class="inline-pic-container">
  19. <v-img
  20. src="/images/Home_logiciel/ecole_de_danse-danseuse.jpg"
  21. alt="Vignette d’une danseuse"
  22. />
  23. </span>
  24. , de votre structure culturelle.
  25. <span class="inline-pic-container">
  26. <v-img
  27. src="/images/Home_logiciel/ecole_de_cirque.jpg"
  28. alt="Vignette d’un homme faisant un spectacle de mime dans une salle de spectacle"
  29. />
  30. </span>
  31. </p>
  32. </v-row>
  33. </v-col>
  34. </v-row>
  35. <v-row class="demo">
  36. <v-col>
  37. <v-img
  38. src="/images/home/écran.JPG"
  39. alt="Vidéo corporate de l’entreprise Opentalent"
  40. class="screen"
  41. >
  42. <v-icon icon="fas fa-play" class="play-icon" />
  43. </v-img>
  44. </v-col>
  45. </v-row>
  46. <v-row class="outil center-90">
  47. <v-col>
  48. <v-row>
  49. <v-col>
  50. <h3>
  51. Un outil complet et intuitif pour chaque structure
  52. </h3>
  53. </v-col>
  54. </v-row>
  55. <v-row class="pictos">
  56. <v-col cols="12" lg="6">
  57. <v-row>
  58. <v-col cols="3">
  59. <img src="/images/pictoHome/network.svg" alt="Icône nuage cloud" />
  60. </v-col>
  61. <v-col cols="9">
  62. <p>
  63. Logiciel de gestion et communication en ligne
  64. </p>
  65. </v-col>
  66. </v-row>
  67. <v-row>
  68. <v-col cols="3">
  69. <img src="/images/pictoHome/website.svg" alt="Icône site internet" />
  70. </v-col>
  71. <v-col cols="9">
  72. <p>
  73. Site web intégré et simple d’usage
  74. </p>
  75. </v-col>
  76. </v-row>
  77. </v-col>
  78. <v-col cols="12" lg="6">
  79. <v-row>
  80. <v-col cols="3">
  81. <img src="/images/pictoHome/visibility.svg" alt="Icône avion en papier" />
  82. </v-col>
  83. <v-col cols="9">
  84. <p>
  85. Augmentez votre visibilité avec l'agenda culturel
  86. </p>
  87. </v-col>
  88. </v-row>
  89. <v-row>
  90. <v-col cols="3">
  91. <img src="/images/pictoHome/communication.svg" alt="Icône de deux enveloppes" />
  92. </v-col>
  93. <v-col cols="9">
  94. <p>
  95. Communiquez en réseau
  96. </p>
  97. </v-col>
  98. </v-row>
  99. </v-col>
  100. </v-row>
  101. </v-col>
  102. </v-row>
  103. </LayoutContainer>
  104. </template>
  105. <script setup lang="ts">
  106. import { useDisplay } from "vuetify";
  107. const { mdAndUp } = useDisplay()
  108. </script>
  109. <style scoped lang="scss">
  110. .highlight {
  111. color: var(--secondary-color);
  112. }
  113. .v-row.gestion {
  114. >.v-col {
  115. margin-bottom: 4rem;
  116. background: var(--primary-color);
  117. @media (max-width: 600px) {
  118. min-height: 430px;
  119. padding: 0 5%;
  120. }
  121. }
  122. .text-block {
  123. font-weight: 600;
  124. font-size: 3rem;
  125. text-align: center;
  126. color: var(--on-primary-color);
  127. height: 20rem;
  128. width: 45rem;
  129. margin: 2rem auto 28rem;
  130. @media (max-width: 600px) {
  131. padding: 0 5%;
  132. }
  133. }
  134. .inline-pic-container {
  135. display: inline-flex;
  136. justify-content: center;
  137. vertical-align: middle;
  138. }
  139. .v-img {
  140. height: auto;
  141. width: 7rem;
  142. max-width: 100%;
  143. border-radius: 5rem;
  144. }
  145. @media (max-width: 960px) {
  146. >.v-col {
  147. margin-bottom: 0;
  148. }
  149. .text-block {
  150. font-weight: 500;
  151. font-size: 2rem;
  152. line-height: 3.5rem;
  153. height: 10rem;
  154. width: 40rem;
  155. margin: 3rem auto 5rem;
  156. }
  157. .v-img {
  158. width: 3.2rem;
  159. border-radius: 5rem;
  160. }
  161. }
  162. }
  163. .v-row.demo {
  164. max-height: 350px;
  165. @media (max-width: 1280px) {
  166. max-height: 1000px;
  167. }
  168. .screen {
  169. width: 900px;
  170. object-fit: cover;
  171. margin: 2rem auto;
  172. text-align: center;
  173. border-radius: 20px;
  174. transition: transform 0.2s;
  175. bottom: 30rem;
  176. }
  177. @media (max-width: 1280px) {
  178. .screen {
  179. margin-top: -12px;
  180. bottom: 0;
  181. width: 100%;
  182. border-radius: 0;
  183. }
  184. }
  185. @media (min-width: 600px) {
  186. .screen:hover {
  187. transform: scale(1.1);
  188. }
  189. }
  190. .play-icon {
  191. position: absolute;
  192. top: 45%;
  193. left: 50%;
  194. transform: translate(-50%, -50%);
  195. font-size: 3rem;
  196. color: var(--on-primary-color);
  197. cursor: pointer;
  198. z-index: 100;
  199. }
  200. }
  201. .outil {
  202. margin-bottom: 36px;
  203. @media (max-width: 600px) {
  204. width: 90%;
  205. margin-left: auto;
  206. margin-right: auto;
  207. }
  208. h3 {
  209. color: var(--primary-color);
  210. font-size: 2rem;
  211. font-weight: 400;
  212. margin-bottom: 3rem;
  213. text-align: center;
  214. }
  215. .pictos {
  216. .v-row {
  217. border-bottom: solid 2px var(--on-neutral-color-extra-light);
  218. border-top: solid 2px var(--on-neutral-color-extra-light);
  219. margin: -2px 0 0;
  220. height: 100px;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. @media (max-width: 600px) {
  225. width: 90%;
  226. }
  227. }
  228. >.v-col-12 {
  229. padding-top : 0;
  230. padding-bottom : 0;
  231. }
  232. img {
  233. width: 50px;
  234. height: 50px;
  235. margin-right: 2rem;
  236. }
  237. p {
  238. font-weight: 400;
  239. font-size: 20px;
  240. line-height: 26px;
  241. width: 25rem;
  242. max-width: 100%;
  243. color: var(--primary-color);
  244. @media (max-width: 600px) {
  245. width: 90%;
  246. margin-bottom: 0;
  247. }
  248. }
  249. }
  250. }
  251. </style>