Solution.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  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 v-if="!smAndDown">
  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">Découvrir</v-btn>
  34. </div>
  35. </v-row>
  36. </nuxt-link>
  37. <v-row>
  38. <v-col cols="6">
  39. <ul class="list-solutions">
  40. <li
  41. v-for="(sol, i) in solution.solutions.slice(0, 4)"
  42. :key="'sol-' + i"
  43. class="details-solution"
  44. >
  45. {{ sol }}
  46. </li>
  47. </ul>
  48. </v-col>
  49. <v-col cols="6">
  50. <ul class="list-solutions">
  51. <li
  52. v-for="(sol, i) in solution.solutions.slice(4)"
  53. :key="'sol-' + i"
  54. class="details-solution"
  55. >
  56. {{ sol }}
  57. </li>
  58. </ul>
  59. </v-col>
  60. </v-row>
  61. </v-container>
  62. </v-col>
  63. </v-row>
  64. </LayoutContainer>
  65. </template>
  66. <script setup>
  67. import { ref, onMounted } from "vue";
  68. import { Carousel, Slide } from "vue3-carousel";
  69. import "vue3-carousel/dist/carousel.css";
  70. import { useDisplay } from "vuetify";
  71. const { smAndDown } = useDisplay();
  72. const carousel = ref(null);
  73. const goPrevious = () => {
  74. carousel.value.prev();
  75. };
  76. const goNext = () => {
  77. carousel.value.next();
  78. };
  79. const solutions = [
  80. {
  81. name: "Artist",
  82. description: "Orchestres, chorales, compagnies de danse, théâtre et cirque",
  83. image: "/images/logo/logiciels/Artist-Blanc.png",
  84. link: "/opentalent_artist",
  85. class: "artist-image",
  86. solutions: [
  87. "Gestion des membres",
  88. "Agenda de la structure",
  89. "Matériel & médiathèque",
  90. "Export de données",
  91. "Communication",
  92. "Statistiques",
  93. "Site internet intégré",
  94. "Partage de données en réseau",
  95. ],
  96. },
  97. {
  98. name: "School",
  99. description: "Petits et grands établissements d'enseignement artistique",
  100. image: "/images/logo/logiciels/School-Blanc.png",
  101. link: "/opentalent_school",
  102. class: "school-image",
  103. solutions: [
  104. "Gestion des membres",
  105. "Préinscription en ligne*",
  106. "Agenda de la structure",
  107. "Suivi pédagogique",
  108. "Gestion administrative et financière",
  109. "Communication",
  110. "Site internet intégré",
  111. "Statistiques",
  112. ],
  113. },
  114. {
  115. name: "Manager",
  116. description: "Fédérations, confédérations et collectivités",
  117. image: "/images/logo/logiciels/Manager-Blanc.png",
  118. link: "/opentalent_manager",
  119. class: "manager-image",
  120. solutions: [
  121. "Gestion des membres",
  122. "Agenda du réseau",
  123. "Matériel & médiathèque",
  124. "Gestion administrative",
  125. "Statistiques du réseau",
  126. "Cotisations",
  127. "Site internet intégré",
  128. "Communication"
  129. ],
  130. },
  131. ];
  132. onMounted(() => {
  133. setTimeout(() => goNext(), 0);
  134. });
  135. </script>
  136. <style scoped>
  137. .image-container {
  138. position: relative;
  139. }
  140. .view-button {
  141. position: absolute;
  142. z-index: 100;
  143. bottom: 40%;
  144. left: 50%;
  145. transform: translateX(-50%);
  146. display: none;
  147. font-size: .8rem ;
  148. border-radius: 6px;
  149. background: var(--Vert-60, #64AFB7);
  150. color: white;
  151. }
  152. .image-container:hover .view-button {
  153. display: block;
  154. }
  155. .solution-subtitle {
  156. font-size: 1rem;
  157. line-height: 1rem;
  158. margin-top: 1rem;
  159. color: #c1eff0;
  160. text-align: center;
  161. letter-spacing: 2.16px;
  162. text-transform: uppercase;
  163. }
  164. .title {
  165. margin-top: 0.5rem;
  166. font-size: 2.8rem;
  167. line-height: 42px;
  168. text-align: center;
  169. color: #ffffff;
  170. width: 100%;
  171. }
  172. .carousel-button {
  173. display: flex;
  174. justify-content: center;
  175. align-items: center;
  176. width: 40px;
  177. height: 40px;
  178. background-color: transparent;
  179. border: 2px solid #fff;
  180. cursor: pointer;
  181. margin-right: 1rem;
  182. margin-top: 4rem;
  183. }
  184. .carousel-button i {
  185. color: #000000;
  186. }
  187. .solution-column {
  188. margin-left: -0.5rem;
  189. }
  190. .logo-sm {
  191. width: 8rem;
  192. height: 4rem;
  193. margin-top: 13rem;
  194. margin-left: 0.5rem;
  195. }
  196. .logo {
  197. width: 10rem;
  198. height: 4rem;
  199. margin-top: 15rem;
  200. }
  201. .artist-image-sm {
  202. position: relative;
  203. background: url(/images/solutions/artist.jpg);
  204. background-size: cover;
  205. background-position: center;
  206. border-radius: 0px 0px 10px 10px;
  207. width: 19rem;
  208. height: 20rem;
  209. margin-top: 4rem;
  210. margin-left: 1rem;
  211. }
  212. .artist-image::before {
  213. content: "";
  214. position: absolute;
  215. top: 0;
  216. left: 0;
  217. right: 0;
  218. bottom: 0;
  219. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  220. border-radius: 0px 0px 10px 10px;
  221. opacity: 0;
  222. transition: opacity 0.3s;
  223. }
  224. .artist-image:hover::before {
  225. opacity: 1;
  226. cursor: pointer;
  227. }
  228. .manager-image-sm {
  229. position: relative;
  230. background: url(/images/solutions/manager.png);
  231. background-size: cover;
  232. background-position: center;
  233. border-radius: 0px 0px 10px 10px;
  234. width: 19rem;
  235. height: 20rem;
  236. margin-top: 4rem;
  237. margin-left: 1rem;
  238. }
  239. .manager-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. .carousel-button {
  252. display: flex;
  253. justify-content: center;
  254. align-items: center;
  255. width: 4rem;
  256. height: 4rem;
  257. background-color: transparent;
  258. border: 2px solid #fff;
  259. cursor: pointer;
  260. margin-right: 1rem;
  261. margin-top: 2rem;
  262. }
  263. .carousel-button i {
  264. color: #fff;
  265. }
  266. .manager-image:hover::before {
  267. opacity: 1;
  268. cursor: pointer;
  269. }
  270. .school-image-sm {
  271. position: relative;
  272. background: url(/images/solutions/school.jpg);
  273. background-size: cover;
  274. background-position: center;
  275. border-radius: 0px 0px 10px 10px;
  276. width: 19rem;
  277. height: 20rem;
  278. margin-top: 4rem;
  279. margin-left: 1rem;
  280. }
  281. .school-image::before {
  282. content: "";
  283. position: absolute;
  284. top: 0;
  285. left: 0;
  286. right: 0;
  287. bottom: 0;
  288. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  289. border-radius: 0px 0px 10px 10px;
  290. opacity: 0;
  291. transition: opacity 0.3s;
  292. }
  293. .school-image:hover::before {
  294. opacity: 1;
  295. cursor: pointer;
  296. }
  297. .solution-img {
  298. width: 15rem;
  299. height: 15rem;
  300. object-fit: cover;
  301. margin-top: 2rem;
  302. }
  303. .description-logiciel {
  304. font-family: "Barlow";
  305. font-style: normal;
  306. font-size: 0.9rem;
  307. line-height: 0.9rem;
  308. margin-top: 1rem;
  309. color: #eff9fb;
  310. width: 20rem;
  311. }
  312. .description-logiciel-sm {
  313. font-family: "Barlow";
  314. font-style: normal;
  315. font-size: 1.2rem;
  316. color: #eff9fb;
  317. line-height: 1.3rem;
  318. margin-top: 1rem;
  319. width: 20rem;
  320. margin-right: auto;
  321. text-align: left;
  322. }
  323. .logiciel-name-sm {
  324. font-family: "Barlow";
  325. font-style: normal;
  326. font-weight: 400;
  327. font-size: 30px;
  328. line-height: 2rem;
  329. color: #c3e5e7;
  330. margin-bottom: 1rem;
  331. margin-right: auto;
  332. text-align: left;
  333. }
  334. .opentalent-small-sm {
  335. margin-right: auto;
  336. text-align: left;
  337. color: #fff;
  338. }
  339. .opentalent-container {
  340. text-align: left;
  341. margin-left: 1rem;
  342. }
  343. .icon-title {
  344. margin-top: 1rem;
  345. color: #ffffff;
  346. }
  347. .list-solutions {
  348. margin-top: 0.9rem;
  349. }
  350. .details-solution {
  351. font-size: 0.9rem;
  352. width: 10rem;
  353. margin-left: 1rem;
  354. font-family: "Barlow";
  355. font-style: normal;
  356. line-height: 18px;
  357. color: #091d20;
  358. }
  359. .details-solution-sm {
  360. margin-top: 0.9rem;
  361. width: 9rem;
  362. margin-left: 1rem;
  363. font-family: "Barlow";
  364. font-style: normal;
  365. line-height: 18px;
  366. color: #091d20;
  367. }
  368. .list-solutions {
  369. margin-top: 0.9rem;
  370. font-size: 0.5rem;
  371. }
  372. .list-solutions-sm {
  373. margin-top: 1rem;
  374. font-size: 1.3rem;
  375. }
  376. .bar {
  377. color: #c3e5e7;
  378. width: 20rem;
  379. }
  380. .bar-sm {
  381. color: #c3e5e7;
  382. width: 20rem;
  383. }
  384. .artist-image {
  385. position: relative;
  386. background: url(/images/solutions/artist.jpg);
  387. background-size: cover;
  388. background-position: center;
  389. border-radius: 0px 0px 10px 10px;
  390. width: 21rem;
  391. height: 20rem;
  392. margin-top: 2rem;
  393. margin-left: 0.9rem;
  394. }
  395. .artist-image::before {
  396. content: "";
  397. position: absolute;
  398. top: 0;
  399. left: 0;
  400. right: 0;
  401. bottom: 0;
  402. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  403. border-radius: 0px 0px 10px 10px;
  404. opacity: 0;
  405. transition: opacity 0.3s;
  406. }
  407. .artist-image:hover::before {
  408. opacity: 1;
  409. cursor: pointer;
  410. }
  411. .manager-image {
  412. position: relative;
  413. background: url(/images/solutions/manager.png);
  414. background-size: cover;
  415. background-position: center;
  416. border-radius: 0px 0px 10px 10px;
  417. width: 21rem;
  418. height: 20rem;
  419. margin-top: 2rem;
  420. margin-left: 0.9rem;
  421. }
  422. .manager-image::before {
  423. content: "";
  424. position: absolute;
  425. top: 0;
  426. left: 0;
  427. right: 0;
  428. bottom: 0;
  429. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  430. border-radius: 0px 0px 10px 10px;
  431. opacity: 0;
  432. transition: opacity 0.3s;
  433. }
  434. .manager-image:hover::before {
  435. opacity: 1;
  436. cursor: pointer;
  437. }
  438. .school-image {
  439. position: relative;
  440. background: url(/images/solutions/school.jpg);
  441. background-size: cover;
  442. background-position: center;
  443. border-radius: 0px 0px 10px 10px;
  444. width: 21rem;
  445. height: 20rem;
  446. margin-top: 2rem;
  447. margin-left: 0.9rem;
  448. }
  449. .school-image::before {
  450. content: "";
  451. position: absolute;
  452. top: 0;
  453. left: 0;
  454. right: 0;
  455. bottom: 0;
  456. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  457. border-radius: 0px 0px 10px 10px;
  458. opacity: 0;
  459. transition: opacity 0.3s;
  460. }
  461. .school-image:hover::before {
  462. opacity: 1;
  463. cursor: pointer;
  464. }
  465. .col-info-sm {
  466. width: 20rem;
  467. margin-left: auto;
  468. margin-right: auto;
  469. }
  470. .solution-img {
  471. width: 15rem;
  472. height: 15rem;
  473. object-fit: cover;
  474. margin-top: 2rem;
  475. }
  476. .description-logiciel {
  477. font-family: "Barlow";
  478. font-style: normal;
  479. font-size: 1.3rem;
  480. line-height: 1.5rem;
  481. margin-top: 1rem;
  482. color: #eff9fb;
  483. }
  484. .logiciel-name {
  485. font-family: "Barlow";
  486. font-style: normal;
  487. font-weight: 400;
  488. font-size: 30px;
  489. line-height: 2rem;
  490. color: #c3e5e7;
  491. margin-bottom: 1rem;
  492. }
  493. .opentalent-small {
  494. font-family: "Barlow";
  495. font-style: normal;
  496. font-weight: 600;
  497. font-size: 10px;
  498. line-height: 15px;
  499. letter-spacing: 0.18em;
  500. text-transform: uppercase;
  501. color: #ffffff;
  502. }
  503. .container {
  504. background: #0e2d32;
  505. margin-bottom: 29rem;
  506. height: 35rem;
  507. position: relative;
  508. }
  509. </style>