Solution.vue 9.0 KB

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