Solution.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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>
  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. },
  102. {
  103. name: "School",
  104. description: "Petits et grands établissements d'enseignement artistique",
  105. image: "/images/logo/logiciels/School-Blanc.png",
  106. link: "/opentalent_school",
  107. class: "school-image",
  108. solutions: [
  109. "Gestion des membres",
  110. "Préinscription en ligne*",
  111. "Agenda de la structure",
  112. "Suivi pédagogique",
  113. "Gestion administrative et financière",
  114. "Communication",
  115. "Site internet intégré",
  116. "Statistiques",
  117. ],
  118. },
  119. {
  120. name: "Manager",
  121. description: "Fédérations, confédérations et collectivités",
  122. image: "/images/logo/logiciels/Manager-Blanc.png",
  123. link: "/opentalent_manager",
  124. class: "manager-image",
  125. solutions: [
  126. "Gestion des membres",
  127. "Agenda du réseau",
  128. "Matériel & médiathèque",
  129. "Gestion administrative",
  130. "Statistiques du réseau",
  131. "Cotisations",
  132. "Site internet intégré",
  133. "Communication",
  134. ],
  135. },
  136. ];
  137. onMounted(() => {
  138. setTimeout(() => goNext(), 0);
  139. });
  140. </script>
  141. <style scoped>
  142. .solution-content {
  143. margin-top: 2rem;
  144. margin-left: 1rem;
  145. margin-right: 1rem;
  146. width: 20rem;
  147. height: 40rem;
  148. border-radius: 10px;
  149. }
  150. .list-container {
  151. display: flex;
  152. justify-content: center;
  153. align-items: center;
  154. }
  155. .image-container {
  156. position: relative;
  157. }
  158. .view-button {
  159. position: absolute;
  160. z-index: 100;
  161. bottom: 40%;
  162. left: 50%;
  163. transform: translateX(-50%);
  164. display: none;
  165. font-size: 0.8rem;
  166. border-radius: 6px;
  167. background: var(--Vert-60, #64afb7);
  168. color: white;
  169. }
  170. .image-container:hover .view-button {
  171. display: block;
  172. }
  173. .solution-subtitle {
  174. font-size: 1rem;
  175. line-height: 1rem;
  176. margin-top: 1rem;
  177. color: #c1eff0;
  178. text-align: center;
  179. letter-spacing: 2.16px;
  180. text-transform: uppercase;
  181. }
  182. .title {
  183. margin-top: 0.5rem;
  184. font-size: 2.8rem;
  185. line-height: 42px;
  186. text-align: center;
  187. color: #ffffff;
  188. width: 100%;
  189. }
  190. .logo {
  191. width: 10rem;
  192. height: 4rem;
  193. margin-top: 15rem;
  194. }
  195. .artist-image::before {
  196. content: "";
  197. position: absolute;
  198. top: 0;
  199. left: 0;
  200. right: 0;
  201. bottom: 0;
  202. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  203. border-radius: 0px 0px 10px 10px;
  204. opacity: 0;
  205. transition: opacity 0.3s;
  206. }
  207. .artist-image:hover::before {
  208. opacity: 1;
  209. cursor: pointer;
  210. }
  211. .manager-image::before {
  212. content: "";
  213. position: absolute;
  214. top: 0;
  215. left: 0;
  216. right: 0;
  217. bottom: 0;
  218. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  219. border-radius: 0px 0px 10px 10px;
  220. opacity: 0;
  221. transition: opacity 0.3s;
  222. }
  223. .carousel-button {
  224. display: flex;
  225. justify-content: center;
  226. align-items: center;
  227. width: 4rem;
  228. height: 4rem;
  229. background-color: transparent;
  230. border: 2px solid #fff;
  231. cursor: pointer;
  232. margin-right: 1rem;
  233. margin-top: 2rem;
  234. }
  235. .carousel-button i {
  236. color: #fff;
  237. }
  238. .manager-image:hover::before {
  239. opacity: 1;
  240. cursor: pointer;
  241. }
  242. .school-image::before {
  243. content: "";
  244. position: absolute;
  245. top: 0;
  246. left: 0;
  247. right: 0;
  248. bottom: 0;
  249. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  250. border-radius: 0px 0px 10px 10px;
  251. opacity: 0;
  252. transition: opacity 0.3s;
  253. }
  254. .school-image:hover::before {
  255. opacity: 1;
  256. cursor: pointer;
  257. }
  258. .description-logiciel {
  259. font-family: "Barlow";
  260. font-style: normal;
  261. font-size: 0.9rem;
  262. line-height: 0.9rem;
  263. margin-top: 1rem;
  264. color: #eff9fb;
  265. width: 20rem;
  266. }
  267. .opentalent-container {
  268. text-align: left;
  269. margin-left: 1rem;
  270. }
  271. .icon-title {
  272. margin-top: 1rem;
  273. color: #ffffff;
  274. }
  275. .list-solutions {
  276. margin-top: 0.9rem;
  277. }
  278. .details-solution {
  279. font-size: 0.9rem;
  280. width: 10rem;
  281. margin-left: 1rem;
  282. font-family: "Barlow";
  283. font-style: normal;
  284. line-height: 18px;
  285. color: #091d20;
  286. }
  287. .list-solutions {
  288. margin-top: 0.9rem;
  289. font-size: 0.5rem;
  290. }
  291. .bar {
  292. color: #c3e5e7;
  293. width: 20rem;
  294. }
  295. .artist-image {
  296. position: relative;
  297. background: url(/images/solutions/artist.jpg);
  298. background-size: cover;
  299. background-position: center;
  300. border-radius: 0px 0px 10px 10px;
  301. width: 21rem;
  302. height: 20rem;
  303. margin-top: 2rem;
  304. margin-left: 0.9rem;
  305. }
  306. .artist-image::before {
  307. content: "";
  308. position: absolute;
  309. top: 0;
  310. left: 0;
  311. right: 0;
  312. bottom: 0;
  313. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  314. border-radius: 0px 0px 10px 10px;
  315. opacity: 0;
  316. transition: opacity 0.3s;
  317. }
  318. .artist-image:hover::before {
  319. opacity: 1;
  320. cursor: pointer;
  321. }
  322. .manager-image {
  323. position: relative;
  324. background: url(/images/solutions/manager.png);
  325. background-size: cover;
  326. background-position: center;
  327. border-radius: 0px 0px 10px 10px;
  328. width: 21rem;
  329. height: 20rem;
  330. margin-top: 2rem;
  331. margin-left: 0.9rem;
  332. }
  333. .manager-image::before {
  334. content: "";
  335. position: absolute;
  336. top: 0;
  337. left: 0;
  338. right: 0;
  339. bottom: 0;
  340. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  341. border-radius: 0px 0px 10px 10px;
  342. opacity: 0;
  343. transition: opacity 0.3s;
  344. }
  345. .manager-image:hover::before {
  346. opacity: 1;
  347. cursor: pointer;
  348. }
  349. .school-image {
  350. position: relative;
  351. background: url(/images/solutions/school.jpg);
  352. background-size: cover;
  353. background-position: center;
  354. border-radius: 0px 0px 10px 10px;
  355. width: 21rem;
  356. height: 20rem;
  357. margin-top: 2rem;
  358. margin-left: 0.9rem;
  359. }
  360. .school-image::before {
  361. content: "";
  362. position: absolute;
  363. top: 0;
  364. left: 0;
  365. right: 0;
  366. bottom: 0;
  367. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  368. border-radius: 0px 0px 10px 10px;
  369. opacity: 0;
  370. transition: opacity 0.3s;
  371. }
  372. .school-image:hover::before {
  373. opacity: 1;
  374. cursor: pointer;
  375. }
  376. .description-logiciel {
  377. font-size: 1.3rem;
  378. line-height: 1.5rem;
  379. margin-top: 1rem;
  380. color: #eff9fb;
  381. }
  382. .logiciel-name {
  383. font-weight: 400;
  384. font-size: 30px;
  385. line-height: 2rem;
  386. color: #c3e5e7;
  387. margin-bottom: 1rem;
  388. }
  389. .opentalent-small {
  390. font-weight: 600;
  391. font-size: 10px;
  392. line-height: 15px;
  393. letter-spacing: 0.18em;
  394. text-transform: uppercase;
  395. color: #ffffff;
  396. }
  397. .container {
  398. background: #0e2d32;
  399. margin-bottom: 15rem;
  400. height: 35rem;
  401. position: relative;
  402. }
  403. </style>