Solution.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <div class="d-flex justify-center align-center flex-column">
  4. <v-icon size="8" class="fa-solid fa-circle icon-title" />
  5. <p class="text-center solution-subtitle">3 solutions</p>
  6. </div>
  7. <h3
  8. class="text-center title"
  9. :style="smAndDown ? '' : 'margin-bottom: 3rem'"
  10. >
  11. Trouvez la solution faites pour vous
  12. </h3>
  13. <v-row class="row-custom">
  14. <v-col
  15. v-for="(solution, index) in solutions"
  16. :key="index"
  17. cols="4"
  18. class="col-info"
  19. >
  20. <v-container>
  21. <div class="solution-content">
  22. <small class="opentalent-small">Opentalent</small>
  23. <h2 class="logiciel-name">
  24. {{ solution.name }}
  25. </h2>
  26. <hr class="bar" />
  27. <p class="description-logiciel">
  28. {{ solution.description }}
  29. </p>
  30. <nuxt-link :to="solution.link">
  31. <v-row>
  32. <div :class="solution.class" class="image-container">
  33. <v-img :src="solution.image" class="logo" />
  34. <v-btn v-on:mouseover="mouseover" class="view-button"
  35. >Découvrir</v-btn
  36. >
  37. </div>
  38. </v-row>
  39. </nuxt-link>
  40. <v-row justify="center">
  41. <div class="list-container">
  42. <v-col cols="6">
  43. <ul class="list-solutions">
  44. <li
  45. v-for="(sol, i) in solution.solutions.slice(0, 4)"
  46. :key="'sol-' + i"
  47. class="details-solution"
  48. >
  49. {{ sol }}
  50. </li>
  51. </ul>
  52. </v-col>
  53. <v-col cols="6">
  54. <ul class="list-solutions">
  55. <li
  56. v-for="(sol, i) in solution.solutions.slice(4)"
  57. :key="'sol-' + i"
  58. class="details-solution"
  59. >
  60. {{ sol }}
  61. </li>
  62. </ul>
  63. </v-col>
  64. </div>
  65. </v-row>
  66. </div>
  67. </v-container>
  68. </v-col>
  69. </v-row>
  70. </LayoutContainer>
  71. </template>
  72. <script setup>
  73. import { ref, onMounted } from "vue";
  74. import "vue3-carousel/dist/carousel.css";
  75. import { useDisplay } from "vuetify";
  76. const { smAndDown } = useDisplay();
  77. const carousel = ref(null);
  78. const goPrevious = () => {
  79. carousel.value.prev();
  80. };
  81. const goNext = () => {
  82. carousel.value.next();
  83. };
  84. const solutions = [
  85. {
  86. name: "Artist",
  87. description: "Orchestres, chorales, compagnies de danse, théâtre et cirque",
  88. image: "/images/logo/logiciels/Artist-Blanc.png",
  89. link: "/opentalent_artist",
  90. class: "artist-image",
  91. solutions: [
  92. "Gestion des membres",
  93. "Agenda de la structure",
  94. "Matériel & médiathèque",
  95. "Export de données",
  96. "Communication",
  97. "Statistiques",
  98. "Site internet intégré",
  99. "Partage de données en réseau",
  100. ],
  101. option: "* en option",
  102. },
  103. {
  104. name: "School",
  105. description: "Petits et grands établissements d'enseignement artistique",
  106. image: "/images/logo/logiciels/School-Blanc.png",
  107. link: "/opentalent_school",
  108. class: "school-image",
  109. solutions: [
  110. "Gestion des membres",
  111. "Préinscription en ligne*",
  112. "Agenda de la structure",
  113. "Suivi pédagogique",
  114. "Gestion administrative et financière",
  115. "Communication",
  116. "Site internet intégré",
  117. "Statistiques",
  118. ],
  119. },
  120. {
  121. name: "Manager",
  122. description: "Fédérations, confédérations et collectivités",
  123. image: "/images/logo/logiciels/Manager-Blanc.png",
  124. link: "/opentalent_manager",
  125. class: "manager-image",
  126. solutions: [
  127. "Gestion des membres",
  128. "Agenda du réseau",
  129. "Matériel & médiathèque",
  130. "Gestion administrative",
  131. "Statistiques du réseau",
  132. "Cotisations",
  133. "Site internet intégré",
  134. "Communication",
  135. ],
  136. },
  137. ];
  138. onMounted(() => {
  139. setTimeout(() => goNext(), 0);
  140. });
  141. </script>
  142. <style scoped>
  143. .row-custom {
  144. width: 90%;
  145. margin-right: auto;
  146. margin-left: auto;
  147. }
  148. .solution-content {
  149. margin-top: 2rem;
  150. margin-left: 1rem;
  151. margin-right: 1rem;
  152. width: 20rem;
  153. height: 40rem;
  154. border-radius: 10px;
  155. }
  156. .list-container {
  157. display: flex;
  158. justify-content: center;
  159. align-items: center;
  160. }
  161. .image-container {
  162. position: relative;
  163. }
  164. .view-button {
  165. position: absolute;
  166. z-index: 100;
  167. bottom: 40%;
  168. left: 50%;
  169. transform: translateX(-50%);
  170. display: none;
  171. font-size: 0.8rem;
  172. border-radius: 6px;
  173. background: var(--Vert-60, #64afb7);
  174. color: white;
  175. }
  176. .image-container:hover .view-button {
  177. display: block;
  178. }
  179. .solution-subtitle {
  180. font-size: 1rem;
  181. line-height: 1rem;
  182. margin-top: 1rem;
  183. color: #c1eff0;
  184. text-align: center;
  185. letter-spacing: 2.16px;
  186. text-transform: uppercase;
  187. }
  188. .title {
  189. margin-top: 0.5rem;
  190. font-size: 2.8rem;
  191. line-height: 42px;
  192. text-align: center;
  193. color: #ffffff;
  194. width: 100%;
  195. }
  196. .logo {
  197. position: absolute;
  198. bottom: 0;
  199. right: 0;
  200. width: 200px;
  201. }
  202. .artist-image::before {
  203. content: "";
  204. position: absolute;
  205. top: 0;
  206. left: 0;
  207. right: 0;
  208. bottom: 0;
  209. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  210. border-radius: 0px 0px 10px 10px;
  211. opacity: 0;
  212. transition: opacity 0.3s;
  213. }
  214. .artist-image:hover::before {
  215. opacity: 1;
  216. cursor: pointer;
  217. }
  218. .manager-image::before {
  219. content: "";
  220. position: absolute;
  221. top: 0;
  222. left: 0;
  223. right: 0;
  224. bottom: 0;
  225. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  226. border-radius: 0px 0px 10px 10px;
  227. opacity: 0;
  228. transition: opacity 0.3s;
  229. }
  230. .carousel-button {
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. width: 4rem;
  235. height: 4rem;
  236. background-color: transparent;
  237. border: 2px solid #fff;
  238. cursor: pointer;
  239. margin-right: 1rem;
  240. margin-top: 2rem;
  241. }
  242. .carousel-button i {
  243. color: #fff;
  244. }
  245. .manager-image:hover::before {
  246. opacity: 1;
  247. cursor: pointer;
  248. }
  249. .school-image::before {
  250. content: "";
  251. position: absolute;
  252. top: 0;
  253. left: 0;
  254. right: 0;
  255. bottom: 0;
  256. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  257. border-radius: 0px 0px 10px 10px;
  258. opacity: 0;
  259. transition: opacity 0.3s;
  260. }
  261. .school-image:hover::before {
  262. opacity: 1;
  263. cursor: pointer;
  264. }
  265. .description-logiciel {
  266. font-family: "Barlow";
  267. font-style: normal;
  268. font-size: 0.9rem;
  269. line-height: 0.9rem;
  270. margin-top: 1rem;
  271. color: #eff9fb;
  272. width: 20rem;
  273. }
  274. .opentalent-container {
  275. text-align: left;
  276. margin-left: 1rem;
  277. }
  278. .icon-title {
  279. margin-top: 1rem;
  280. color: #ffffff;
  281. }
  282. .details-solution {
  283. font-size: 0.9rem;
  284. width: 10rem;
  285. margin-left: 1rem;
  286. font-family: "Barlow";
  287. font-style: normal;
  288. line-height: 18px;
  289. color: #091d20;
  290. }
  291. .list-solutions {
  292. margin-top: 0.9rem;
  293. font-size: 0.5rem;
  294. }
  295. .bar {
  296. color: #c3e5e7;
  297. width: 20rem;
  298. }
  299. .artist-image {
  300. position: relative;
  301. background: url(/images/solutions/artist.jpg);
  302. background-size: cover;
  303. background-position: center;
  304. border-radius: 0px 0px 10px 10px;
  305. width: 21rem;
  306. height: 20rem;
  307. margin-top: 2rem;
  308. margin-left: 0.9rem;
  309. }
  310. .artist-image::before {
  311. content: "";
  312. position: absolute;
  313. top: 0;
  314. left: 0;
  315. right: 0;
  316. bottom: 0;
  317. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  318. border-radius: 0px 0px 10px 10px;
  319. opacity: 0;
  320. transition: opacity 0.3s;
  321. }
  322. .artist-image:hover::before {
  323. opacity: 1;
  324. cursor: pointer;
  325. }
  326. .manager-image {
  327. position: relative;
  328. background: url(/images/solutions/manager.png);
  329. background-size: cover;
  330. background-position: center;
  331. border-radius: 0px 0px 10px 10px;
  332. width: 21rem;
  333. height: 20rem;
  334. margin-top: 2rem;
  335. margin-left: 0.9rem;
  336. }
  337. .manager-image::before {
  338. content: "";
  339. position: absolute;
  340. top: 0;
  341. left: 0;
  342. right: 0;
  343. bottom: 0;
  344. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  345. border-radius: 0px 0px 10px 10px;
  346. opacity: 0;
  347. transition: opacity 0.3s;
  348. }
  349. .manager-image:hover::before {
  350. opacity: 1;
  351. cursor: pointer;
  352. }
  353. .school-image {
  354. position: relative;
  355. background: url(/images/solutions/school.jpg);
  356. background-size: cover;
  357. background-position: center;
  358. border-radius: 0px 0px 10px 10px;
  359. width: 21rem;
  360. height: 20rem;
  361. margin-top: 2rem;
  362. margin-left: 0.9rem;
  363. }
  364. .school-image::before {
  365. content: "";
  366. position: absolute;
  367. top: 0;
  368. left: 0;
  369. right: 0;
  370. bottom: 0;
  371. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  372. border-radius: 0px 0px 10px 10px;
  373. opacity: 0;
  374. transition: opacity 0.3s;
  375. }
  376. .school-image:hover::before {
  377. opacity: 1;
  378. cursor: pointer;
  379. }
  380. .description-logiciel {
  381. font-size: 1.3rem;
  382. line-height: 1.5rem;
  383. margin-top: 1rem;
  384. color: #eff9fb;
  385. }
  386. .logiciel-name {
  387. font-weight: 400;
  388. font-size: 30px;
  389. line-height: 2rem;
  390. color: #c3e5e7;
  391. margin-bottom: 1rem;
  392. }
  393. .opentalent-small {
  394. font-weight: 600;
  395. font-size: 10px;
  396. line-height: 15px;
  397. letter-spacing: 0.18em;
  398. text-transform: uppercase;
  399. color: #ffffff;
  400. }
  401. .container {
  402. background: #0e2d32;
  403. margin-bottom: 15rem;
  404. height: 35rem;
  405. position: relative;
  406. }
  407. </style>