Solution.vue 9.1 KB

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