Promotion.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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. }
  118. .text-block {
  119. font-weight: 600;
  120. font-size: 3rem;
  121. text-align: center;
  122. color: var(--on-primary-color);
  123. height: 20rem;
  124. width: 45rem;
  125. margin: 2rem auto 28rem;
  126. }
  127. .inline-pic-container {
  128. display: inline-flex;
  129. justify-content: center;
  130. vertical-align: middle;
  131. }
  132. .v-img {
  133. height: auto;
  134. width: 7rem;
  135. max-width: 100%;
  136. border-radius: 5rem;
  137. }
  138. @media (max-width: 960px) {
  139. >.v-col {
  140. margin-bottom: 0;
  141. }
  142. .text-block {
  143. font-weight: 500;
  144. font-size: 2rem;
  145. line-height: 3.5rem;
  146. height: 10rem;
  147. width: 40rem;
  148. margin: 3rem 2rem 5rem;
  149. }
  150. .v-img {
  151. width: 3.2rem;
  152. border-radius: 5rem;
  153. }
  154. }
  155. }
  156. .v-row.demo {
  157. .screen {
  158. width: 900px;
  159. object-fit: cover;
  160. margin: 2rem auto;
  161. text-align: center;
  162. border-radius: 20px;
  163. transition: transform 0.2s;
  164. bottom: 30rem;
  165. }
  166. @media (max-width: 1280px) {
  167. .screen {
  168. margin-top: -12px;
  169. bottom: 0;
  170. width: 100%;
  171. border-radius: 0;
  172. }
  173. }
  174. @media (min-width: 600px) {
  175. .screen:hover {
  176. transform: scale(1.1);
  177. }
  178. }
  179. .play-icon {
  180. position: absolute;
  181. top: 45%;
  182. left: 50%;
  183. transform: translate(-50%, -50%);
  184. font-size: 3rem;
  185. color: var(--on-primary-color);
  186. cursor: pointer;
  187. z-index: 100;
  188. }
  189. }
  190. .outil {
  191. margin-bottom: 36px;
  192. @media (max-width: 600px) {
  193. width: 90%;
  194. margin-left: auto;
  195. margin-right: auto;
  196. }
  197. h3 {
  198. color: var(--primary-color);
  199. font-size: 2rem;
  200. font-weight: 400;
  201. margin-bottom: 3rem;
  202. text-align: center;
  203. }
  204. .pictos {
  205. .v-row {
  206. border-bottom: solid 2px var(--on-neutral-color-extra-light);
  207. border-top: solid 2px var(--on-neutral-color-extra-light);
  208. margin: -2px 0 0;
  209. height: 100px;
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. @media (max-width: 600px) {
  214. width: 90%;
  215. }
  216. }
  217. >.v-col-12 {
  218. padding-top : 0;
  219. padding-bottom : 0;
  220. }
  221. img {
  222. width: 50px;
  223. height: 50px;
  224. margin-right: 2rem;
  225. }
  226. p {
  227. font-weight: 400;
  228. font-size: 20px;
  229. line-height: 26px;
  230. width: 25rem;
  231. max-width: 100%;
  232. color: var(--primary-color);
  233. @media (max-width: 600px) {
  234. width: 90%;
  235. margin-bottom: 0;
  236. }
  237. }
  238. }
  239. }
  240. </style>