Promotion.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <LayoutContainer>
  3. <v-col col="12" class="col-gestion">
  4. <div class="d-flex justify-center align-center flex-column">
  5. <v-icon size="8" class="fa-solid fa-circle icon-title"></v-icon>
  6. <h5 class="subtitle">GESTION ET PROMOTION</h5>
  7. </div>
  8. <v-row>
  9. <p :class="smAndDown ? 'text-gestion-sm' : 'text-gestion'">
  10. <span class="span-color">Simplifiez</span> vous la vie avec un outil
  11. <span class="d-inline-flex">
  12. <v-img
  13. src="/images/promotion/piano.jpg"
  14. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  15. >
  16. </v-img>
  17. </span>
  18. tout en un pour la gestion et la promotion
  19. <span class="d-inline-flex">
  20. <v-img
  21. src="/images/promotion/danse.jpg"
  22. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  23. >
  24. </v-img>
  25. </span>
  26. , de votre structure culturelle.
  27. <span class="d-inline-flex">
  28. <v-img
  29. src="/images/promotion/cirque.jpg"
  30. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  31. >
  32. </v-img>
  33. </span>
  34. </p>
  35. </v-row>
  36. </v-col>
  37. <v-row>
  38. <v-col cols="12">
  39. <v-img
  40. src="/images/home/écran.JPG"
  41. :class="[
  42. smAndDown ? 'screen-sm' : 'screen',
  43. !smAndDown && isZoomed ? 'zoom' : '',
  44. ]"
  45. @mouseover="zoomIn"
  46. @mouseleave="zoomOut"
  47. ></v-img>
  48. </v-col>
  49. </v-row>
  50. <div class="outil">
  51. <h3 class="text-center text-outil">
  52. Un outil complet et intuitif <br />
  53. pour chaque structure
  54. </h3>
  55. <div v-if="smAndDown">
  56. <v-row>
  57. <div class="horizontal-line"></div>
  58. <div class="picto-group">
  59. <v-img src="/images/pictoHome/picto1.svg" class="picto-sm"></v-img>
  60. <p class="text-outil-sm"> Logiciel de Gestion et communication en ligne</p>
  61. </div>
  62. </v-row>
  63. <v-row>
  64. <div class="horizontal-line"></div>
  65. <div class="picto-group">
  66. <v-img src="/images/pictoHome/picto2.svg" class="picto-sm"></v-img>
  67. <p class="text-outil-sm"> Site Web intégré et simple d’usage</p>
  68. </div>
  69. </v-row>
  70. <v-row>
  71. <div class="horizontal-line"></div>
  72. <div class="picto-group">
  73. <v-img src="/images/pictoHome/picto3.svg" class="picto-sm"></v-img>
  74. <p class="text-outil-sm"> Boostez votre visibilité et votre communication avec l’agenda
  75. culturel</p>
  76. </div>
  77. </v-row>
  78. <v-row>
  79. <div class="horizontal-line"></div>
  80. <div class="picto-group mb-12">
  81. <v-img src="/images/pictoHome/picto4.svg" class="picto-sm"></v-img>
  82. <p class="text-outil-sm"> Communiquez en réseau</p>
  83. </div>
  84. </v-row>
  85. </div>
  86. <div v-if="!smAndDown">
  87. <v-row>
  88. <v-col cols="6">
  89. <v-row class="row-outil">
  90. <p class="text-outil-details with-border-top mt-3">
  91. Logiciel de Gestion et communication en ligne
  92. </p>
  93. </v-row>
  94. <v-row class="row-outil">
  95. <p class="text-outil-details with-border">
  96. Site Web intégré et simple d’usage
  97. </p>
  98. </v-row>
  99. </v-col>
  100. <v-col cols="6">
  101. <v-row class="row-outil">
  102. <p class="text-outil-details with-border-top">
  103. Boostez votre visibilité et votre communication avec l’agenda
  104. culturel
  105. </p>
  106. </v-row>
  107. <v-row class="row-outil">
  108. <p class="text-outil-details with-border">Communiquez en réseau</p>
  109. </v-row>
  110. </v-col>
  111. </v-row>
  112. </div>
  113. </div>
  114. </LayoutContainer>
  115. </template>
  116. <script setup>
  117. import { useDisplay } from "vuetify";
  118. const { mdAndDown, smAndDown } = useDisplay();
  119. const isZoomed = ref(false);
  120. const zoomIn = () => {
  121. isZoomed.value = true;
  122. };
  123. const zoomOut = () => {
  124. isZoomed.value = false;
  125. };
  126. </script>
  127. <style scoped>
  128. .horizontal-line {
  129. width: 80%;
  130. margin-left: auto;
  131. margin-right: auto;
  132. height: 1px;
  133. background-color: #d1cdc7;
  134. margin-bottom: 1rem;
  135. }
  136. .text-outil-sm{
  137. font-family: "Barlow";
  138. font-style: normal;
  139. font-weight: 400;
  140. font-size: 22px;
  141. line-height: 26px;
  142. width: 19rem;
  143. color: #0e2d32;
  144. }
  145. .picto-group {
  146. display: flex;
  147. align-items: center;
  148. justify-content: center;
  149. margin-top: 1rem;
  150. margin-bottom: 1rem;
  151. }
  152. .picto-sm {
  153. margin-left: 4rem;
  154. width: 50px;
  155. height: 50px;
  156. margin-right: 2rem;
  157. }
  158. .screen-sm {
  159. width: 70%;
  160. object-fit: cover;
  161. margin: 2rem auto;
  162. border-radius: 20px;
  163. bottom: 15rem;
  164. margin-bottom: 8rem;
  165. }
  166. .screen {
  167. width: 900px;
  168. object-fit: cover;
  169. margin: 2rem auto;
  170. text-align: center;
  171. border-radius: 20px;
  172. transition: transform 0.2s;
  173. bottom: 25rem;
  174. }
  175. .screen:hover {
  176. transform: scale(1.1);
  177. }
  178. .subtitle {
  179. font-size: 1.5rem;
  180. line-height: 1rem;
  181. margin-top: 1rem;
  182. color: #c1eff0;
  183. text-align: center;
  184. font-family: "Barlow";
  185. letter-spacing: 2.16px;
  186. text-transform: uppercase;
  187. }
  188. .icon-title {
  189. margin-top: 1rem;
  190. color: #ffffff;
  191. margin-right: 1rem;
  192. }
  193. .with-border,
  194. .with-border-top {
  195. border-bottom: 1px solid #d1cdc7;
  196. padding-top: 1rem;
  197. padding-bottom: 1rem;
  198. }
  199. .with-border-top {
  200. border-top: 1px solid #d1cdc7;
  201. }
  202. .row-outil {
  203. margin-left: 4rem;
  204. }
  205. .text-outil-details {
  206. font-family: "Barlow";
  207. font-style: normal;
  208. font-weight: 400;
  209. font-size: 22px;
  210. line-height: 26px;
  211. width: 19rem;
  212. color: #0e2d32;
  213. margin-left: 10rem;
  214. margin-bottom: 1rem;
  215. }
  216. .text-outil {
  217. font-family: "Barlow";
  218. font-style: normal;
  219. font-weight: 400;
  220. font-size: 2rem;
  221. color: #0e2d32;
  222. margin-top: -20rem;
  223. margin-bottom: 3rem;
  224. }
  225. .col-gestion {
  226. margin-bottom: 4rem;
  227. background: #0e2d32;
  228. }
  229. .text-gestion-sm {
  230. font-family: "Barlow";
  231. font-style: normal;
  232. font-weight: 500;
  233. font-size: 2.5rem;
  234. line-height: 3.5rem;
  235. text-align: center;
  236. color: white;
  237. height: 20rem;
  238. margin-top: 3rem;
  239. width: 40rem;
  240. margin: 3rem 2rem 10rem;
  241. }
  242. .text-gestion {
  243. font-family: "Barlow";
  244. font-style: normal;
  245. font-weight: 600;
  246. font-size: 4rem;
  247. line-height: 5.5rem;
  248. text-align: center;
  249. color: white;
  250. height: 20rem;
  251. margin-top: 3rem;
  252. width: 55rem;
  253. margin: 3rem auto 30rem;
  254. }
  255. .span-color {
  256. color: #caf5f4;
  257. }
  258. .rectangle-img-sm {
  259. margin-top: -3rem;
  260. top: 2rem;
  261. width: 6rem;
  262. height: 5rem;
  263. border-radius: 5rem;
  264. }
  265. .rectangle-img {
  266. margin-top: -2rem;
  267. top: 2rem;
  268. width: 8rem;
  269. height: 5rem;
  270. border-radius: 5rem;
  271. }
  272. </style>