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