Solution.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. <!--
  2. Section "Solutions" de la page d'accueil
  3. -->
  4. <template>
  5. <LayoutContainer :overflow="false">
  6. <div class="d-flex justify-center align-center flex-column">
  7. <v-icon
  8. size="6"
  9. icon="fas fa-circle"
  10. />
  11. <h5>
  12. 3 solutions
  13. </h5>
  14. </div>
  15. <h3 class="text-center" >
  16. Trouvez la solution faites pour vous
  17. </h3>
  18. <v-row class="solutions">
  19. <v-col
  20. v-for="(solution, index) in solutions"
  21. :key="index"
  22. cols="4"
  23. >
  24. <v-container>
  25. <div class="d-flex justify-center align-left flex-column">
  26. <small>
  27. Opentalent
  28. </small>
  29. <h2>
  30. {{ solution.name }}
  31. </h2>
  32. <v-divider thickness="2"/>
  33. <p>
  34. {{ solution.description }}
  35. </p>
  36. <nuxt-link :to="solution.link">
  37. <v-row>
  38. <div :class="['image-container', solution.class]" >
  39. <v-img :src="solution.image" />
  40. <v-btn>Découvrir</v-btn>
  41. </div>
  42. </v-row>
  43. </nuxt-link>
  44. <v-row>
  45. <div class="details">
  46. <v-col cols="6">
  47. <ul>
  48. <li
  49. v-for="(sol, i) in solution.solutions.slice(0, 4)"
  50. :key="i"
  51. >
  52. {{ sol }}
  53. </li>
  54. </ul>
  55. </v-col>
  56. <v-col cols="6">
  57. <ul>
  58. <li
  59. v-for="(sol, i) in solution.solutions.slice(4)"
  60. :key="i"
  61. >
  62. {{ sol }}
  63. </li>
  64. </ul>
  65. </v-col>
  66. </div>
  67. </v-row>
  68. </div>
  69. </v-container>
  70. </v-col>
  71. </v-row>
  72. <v-container class="footer">
  73. <v-row >
  74. <v-col cols="12">
  75. <p>* en option</p>
  76. </v-col>
  77. </v-row>
  78. </v-container>
  79. </LayoutContainer>
  80. </template>
  81. <script setup lang="ts">
  82. import type { SolutionItem } from "~/types/interface";
  83. const solutions: Array<SolutionItem> = [
  84. {
  85. name: "Artist",
  86. description: "Orchestres, chorales, compagnies de danse, théâtre et cirque",
  87. image: "/images/logo/logiciels/Artist-Blanc.png",
  88. link: "/opentalent_artist",
  89. class: "artist-image",
  90. solutions: [
  91. "Gestion des membres",
  92. "Agenda de la structure",
  93. "Matériel & médiathèque",
  94. "Export de données",
  95. "Communication",
  96. "Statistiques",
  97. "Site internet intégré",
  98. "Partage de données en réseau",
  99. ],
  100. },
  101. {
  102. name: "School",
  103. description: "Petits et grands établissements d'enseignement artistique",
  104. image: "/images/logo/logiciels/School-Blanc.png",
  105. link: "/opentalent_school",
  106. class: "school-image",
  107. solutions: [
  108. "Gestion des membres",
  109. "Préinscription en ligne*",
  110. "Agenda de la structure",
  111. "Suivi pédagogique",
  112. "Gestion administrative et financière",
  113. "Communication",
  114. "Site internet intégré",
  115. "Statistiques",
  116. ]
  117. },
  118. {
  119. name: "Manager",
  120. description: "Fédérations, confédérations et collectivités",
  121. image: "/images/logo/logiciels/Manager-Blanc.png",
  122. link: "/opentalent_manager",
  123. class: "manager-image",
  124. solutions: [
  125. "Gestion des membres",
  126. "Agenda du réseau",
  127. "Matériel & médiathèque",
  128. "Gestion administrative",
  129. "Statistiques du réseau",
  130. "Cotisations",
  131. "Site internet intégré",
  132. "Communication",
  133. ],
  134. },
  135. ];
  136. </script>
  137. <style scoped lang="scss">
  138. .container {
  139. background: #0e2d32;
  140. margin-bottom: 15rem;
  141. height: 36rem;
  142. position: relative;
  143. }
  144. h5 {
  145. font-size: 1rem;
  146. line-height: 1rem;
  147. margin-top: 1rem;
  148. color: #c1eff0;
  149. text-align: center;
  150. letter-spacing: 2.16px;
  151. text-transform: uppercase;
  152. }
  153. .fa-circle{
  154. margin-top: 1rem;
  155. color: #ffffff;
  156. margin-right: 1rem;
  157. }
  158. h3 {
  159. margin-top: 0.5rem;
  160. font-size: 2.8rem;
  161. line-height: 42px;
  162. text-align: center;
  163. color: #ffffff;
  164. width: 100%;
  165. }
  166. @media (min-width: 600px) {
  167. h3 {
  168. margin-bottom: 3rem
  169. }
  170. }
  171. .v-row.solutions {
  172. width: 90%;
  173. margin-right: auto;
  174. margin-left: auto;
  175. small {
  176. font-weight: 600;
  177. font-size: 10px;
  178. line-height: 15px;
  179. letter-spacing: 0.18em;
  180. text-transform: uppercase;
  181. color: #ffffff;
  182. }
  183. h2 {
  184. font-weight: 400;
  185. font-size: 30px;
  186. line-height: 2rem;
  187. color: #c3e5e7;
  188. margin-bottom: 1rem;
  189. }
  190. .v-divider {
  191. color: #c3e5e7;
  192. width: 20rem;
  193. opacity: 0.7;
  194. }
  195. p {
  196. font-family: "Barlow", serif;
  197. font-size: 1.3rem;
  198. line-height: 1.5rem;
  199. margin-top: 1rem;
  200. color: #eff9fb;
  201. font-style: normal;
  202. width: 20rem;
  203. }
  204. .image-container {
  205. position: relative;
  206. background-size: cover;
  207. background-position: center;
  208. border-radius: 0 0 10px 10px;
  209. width: 350px;
  210. height: 300px;
  211. margin-top: 2rem;
  212. margin-left: 0.9rem;
  213. margin-bottom: 1rem;
  214. .v-img {
  215. position: absolute;
  216. bottom: 0;
  217. right: 0;
  218. width: 200px;
  219. }
  220. }
  221. .image-container::before {
  222. content: "";
  223. position: absolute;
  224. top: 0;
  225. left: 0;
  226. right: 0;
  227. bottom: 0;
  228. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  229. border-radius: 0 0 10px 10px;
  230. opacity: 0;
  231. transition: opacity 0.3s;
  232. }
  233. .v-btn {
  234. position: absolute;
  235. z-index: 100;
  236. bottom: 40%;
  237. left: 50%;
  238. transform: translateX(-50%);
  239. display: none;
  240. font-size: 0.8rem;
  241. border-radius: 6px;
  242. background: var(--Vert-60, #64afb7);
  243. color: white;
  244. }
  245. .image-container:hover .v-btn {
  246. display: block;
  247. }
  248. .artist-image {
  249. background: url(/images/solutions/artist.jpg);
  250. }
  251. .artist-image:hover::before {
  252. opacity: 1;
  253. cursor: pointer;
  254. }
  255. .school-image{
  256. background: url(/images/solutions/school.jpg);
  257. }
  258. .school-image:hover::before {
  259. opacity: 1;
  260. cursor: pointer;
  261. }
  262. .manager-image {
  263. background: url(/images/solutions/manager.png);
  264. }
  265. .manager-image:hover::before {
  266. opacity: 1;
  267. cursor: pointer;
  268. }
  269. .details {
  270. display: flex;
  271. justify-content: center;
  272. align-items: center;
  273. ul {
  274. margin-top: 0.9rem;
  275. font-size: 0.5rem;
  276. }
  277. li {
  278. font-family: "Barlow", serif;
  279. font-size: 0.8rem;
  280. width: 10rem;
  281. margin-left: 1rem;
  282. font-style: normal;
  283. line-height: 18px;
  284. color: #091d20;
  285. }
  286. }
  287. }
  288. .footer {
  289. p {
  290. text-align: right;
  291. font-size: 12px;
  292. }
  293. }
  294. </style>