Solution.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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="d-flex justify-center align-left flex-column">
  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>
  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. <v-row>
  67. <v-col cols="12" lg="4" md="4" sm="4"
  68. >
  69. <p style="font-size: 0.7rem; text-align: left !important;">
  70. {{ solution.option }}
  71. </p></v-col
  72. >
  73. </v-row>
  74. </div>
  75. </v-container>
  76. </v-col>
  77. </v-row>
  78. </LayoutContainer>
  79. </template>
  80. <script setup>
  81. import { ref, onMounted } from "vue";
  82. import "vue3-carousel/dist/carousel.css";
  83. import { useDisplay } from "vuetify";
  84. const { smAndDown } = useDisplay();
  85. const carousel = ref(null);
  86. const goPrevious = () => {
  87. carousel.value.prev();
  88. };
  89. const goNext = () => {
  90. carousel.value.next();
  91. };
  92. const solutions = [
  93. {
  94. name: "Artist",
  95. description: "Orchestres, chorales, compagnies de danse, théâtre et cirque",
  96. image: "/images/logo/logiciels/Artist-Blanc.png",
  97. link: "/opentalent_artist",
  98. class: "artist-image",
  99. solutions: [
  100. "Gestion des membres",
  101. "Agenda de la structure",
  102. "Matériel & médiathèque",
  103. "Export de données",
  104. "Communication",
  105. "Statistiques",
  106. "Site internet intégré",
  107. "Partage de données en réseau",
  108. ],
  109. },
  110. {
  111. name: "School",
  112. description: "Petits et grands établissements d'enseignement artistique",
  113. image: "/images/logo/logiciels/School-Blanc.png",
  114. link: "/opentalent_school",
  115. class: "school-image",
  116. solutions: [
  117. "Gestion des membres",
  118. "Préinscription en ligne*",
  119. "Agenda de la structure",
  120. "Suivi pédagogique",
  121. "Gestion administrative et financière",
  122. "Communication",
  123. "Site internet intégré",
  124. "Statistiques",
  125. ],
  126. option: "* en option",
  127. },
  128. {
  129. name: "Manager",
  130. description: "Fédérations, confédérations et collectivités",
  131. image: "/images/logo/logiciels/Manager-Blanc.png",
  132. link: "/opentalent_manager",
  133. class: "manager-image",
  134. solutions: [
  135. "Gestion des membres",
  136. "Agenda du réseau",
  137. "Matériel & médiathèque",
  138. "Gestion administrative",
  139. "Statistiques du réseau",
  140. "Cotisations",
  141. "Site internet intégré",
  142. "Communication",
  143. ],
  144. },
  145. ];
  146. onMounted(() => {
  147. setTimeout(() => goNext(), 0);
  148. });
  149. </script>
  150. <style scoped>
  151. .row-custom {
  152. width: 90%;
  153. margin-right: auto;
  154. margin-left: auto;
  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. .icon-title {
  275. margin-top: 1rem;
  276. color: #ffffff;
  277. }
  278. .details-solution {
  279. font-size: 0.8rem;
  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>