Promotion.vue 5.8 KB

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