Outil.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="outil-row">
  4. <v-col cols="4">
  5. <div class="title">
  6. <v-icon class="fa-brands fa-react icon-title"></v-icon>
  7. <h4>Présentation d'opentalent artist</h4>
  8. </div>
  9. <v-img src="/images/logiciels/school/screen.jpg" class="screen-img">
  10. </v-img>
  11. <div class="rectangle-4">
  12. <div class="black-circle">
  13. <div class="content-flex">
  14. <v-img
  15. src="/images/OpenTalent_LogoNoir_Jaune_white.png"
  16. class="logo-artist"
  17. >
  18. </v-img>
  19. <p class="devis">Sur devis</p>
  20. </div>
  21. </div>
  22. </div>
  23. </v-col>
  24. <v-col cols="5">
  25. <h2 class="outil-title">Un outil complet en ligne</h2>
  26. <ul class="outil-ul">
  27. <li class="outil-list">
  28. Logiciel de gestion et communication en ligne
  29. </li>
  30. <li class="outil-list">
  31. Destiné aux établissements d'enseignement artistique
  32. </li>
  33. <li class="outil-list">
  34. Gestion quotidienne et en temps réel (suivi pédagogique,
  35. facturation, encaissement…)
  36. </li>
  37. <li class="outil-list">Pilotage complet de votre structure</li>
  38. </ul>
  39. </v-col>
  40. <v-col cols="3">
  41. <div class="container-square">
  42. <v-row>
  43. <div class="yellow-square">
  44. <v-icon class="fa-regular fa-comments icon"></v-icon>
  45. <p class="text-square">Nous contacter</p>
  46. </div>
  47. </v-row>
  48. <v-row>
  49. <div class="yellow-square">
  50. <v-icon class="fa-regular fa-circle-info icon"></v-icon>
  51. <p class="text-square">Demander une demo</p>
  52. </div>
  53. </v-row>
  54. </div>
  55. </v-col>
  56. <v-row>
  57. <v-col cols="4"> </v-col>
  58. <v-col cols="5">
  59. <h2>Des caractéristiques uniques & dédiées</h2>
  60. <div class="picto-container">
  61. <div class="picto-group">
  62. <v-img
  63. class="picto-img"
  64. src="/images/logiciels/artist/picto1.png"
  65. ></v-img>
  66. <p class="picto-text">
  67. Logiciel de gestion & communication full web
  68. </p>
  69. </div>
  70. <div class="picto-group">
  71. <v-img
  72. class="picto-img"
  73. src="/images/logiciels/artist/picto2.png"
  74. ></v-img>
  75. <p class="picto-text">
  76. Boostez votre visibilité & votre communication
  77. </p>
  78. </div>
  79. <div class="picto-group">
  80. <v-img
  81. class="picto-img"
  82. src="/images/logiciels/artist/picto3.png"
  83. ></v-img>
  84. <p class="picto-text">
  85. Boostez votre visibilité & votre communication
  86. </p>
  87. </div>
  88. <div class="picto-group">
  89. <v-img
  90. class="picto-img"
  91. src="/images/logiciels/artist/picto4.png"
  92. ></v-img>
  93. <p class="picto-text">Communiquez en réseau</p>
  94. </div>
  95. </div>
  96. </v-col>
  97. <v-col cols="2"> </v-col>
  98. </v-row>
  99. </v-row>
  100. <v-row class="container-green">
  101. <v-row>
  102. <v-col cols="6">
  103. <p class="citation-school">
  104. “ Pour les petits comme pour les grands établissements
  105. d’enseignement artistique.“
  106. </p>
  107. </v-col>
  108. </v-row>
  109. <v-col cols="6">
  110. <h6 class="subtitle-logiciel">Logiciel Opentalent</h6>
  111. <v-img src="/images/logiciels/school/screen2.png" class="screen2-img">
  112. </v-img>
  113. </v-col>
  114. </v-row>
  115. </LayoutContainer>
  116. </template>
  117. <script setup></script>
  118. <style scoped>
  119. .devis {
  120. font-weight: 500;
  121. font-size: 1rem;
  122. margin-left: 9rem;
  123. margin-top: -1rem;
  124. width: 7rem;
  125. }
  126. .icon-title {
  127. margin-right: 1.5rem;
  128. color: rgba(32, 147, 190, 0.6);
  129. }
  130. .text-square {
  131. font-family: "Barlow";
  132. margin-left: 2rem;
  133. margin-right: 2rem;
  134. margin-top: 0.9rem;
  135. text-align: center;
  136. }
  137. .icon {
  138. margin-top: 2rem;
  139. }
  140. .container-square {
  141. display: flex;
  142. flex-direction: column;
  143. justify-content: space-between;
  144. color: white;
  145. font-weight: 500;
  146. font-size: 0.7rem;
  147. line-height: 15px;
  148. text-align: center;
  149. letter-spacing: 0.2em;
  150. text-transform: uppercase;
  151. }
  152. .outil-title {
  153. font-family: "Barlow";
  154. font-style: normal;
  155. font-weight: 600;
  156. font-size: 3rem;
  157. line-height: 18px;
  158. color: #091d20;
  159. margin-bottom: 4rem;
  160. }
  161. .outil-ul {
  162. margin-left: 1rem;
  163. font-family: "Barlow";
  164. font-style: normal;
  165. font-weight: 300;
  166. font-size: 1rem;
  167. line-height: 1.5rem;
  168. }
  169. .logo-artist {
  170. top: 1rem;
  171. margin-left: 0.3rem;
  172. margin-right: 0.5rem;
  173. z-index: 1;
  174. }
  175. .citation-school {
  176. font-family: "Barlow";
  177. font-style: italic;
  178. font-weight: 300;
  179. font-size: 2rem;
  180. width: 38rem;
  181. line-height: 40px;
  182. color: #ffffff;
  183. font-style: italic;
  184. margin-top: 20rem;
  185. margin-left: 2rem;
  186. }
  187. .subtitle-logiciel {
  188. font-family: "Barlow";
  189. font-style: normal;
  190. font-weight: 600;
  191. font-size: 1.5rem;
  192. line-height: 18px;
  193. color: #ffffff;
  194. margin-left: 5rem;
  195. margin-right: 15rem;
  196. margin-top: 4rem;
  197. top: 10rem;
  198. }
  199. .screen2-img {
  200. width: 50rem;
  201. height: 40rem;
  202. bottom: 4rem;
  203. }
  204. .container-green {
  205. background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
  206. rgba(7, 27, 31, 0.3);
  207. height: 35rem;
  208. }
  209. .title-picto-container {
  210. align-items: start;
  211. }
  212. .picto-container {
  213. display: flex;
  214. flex-direction: row;
  215. justify-content: space-between;
  216. margin-left: -15rem;
  217. }
  218. .rectangle-4 {
  219. width: 18rem;
  220. height: 6rem;
  221. background: rgba(250, 194, 10, 0.2);
  222. border-radius: 3rem;
  223. margin-left: 5rem;
  224. margin-top: 2rem;
  225. }
  226. .picto-img {
  227. width: 14rem;
  228. height: 14rem;
  229. }
  230. .picto-group {
  231. display: flex;
  232. flex-direction: column;
  233. align-items: center;
  234. }
  235. .picto-text {
  236. font-family: "Barlow";
  237. font-style: normal;
  238. font-weight: 300;
  239. font-size: 0.9rem;
  240. margin-top: -3rem;
  241. text-align: center;
  242. margin-right: 2rem;
  243. margin-left: 2rem;
  244. }
  245. .black-circle {
  246. border-radius: 3rem;
  247. background: #091d20;
  248. width: 7rem;
  249. height: 6rem;
  250. }
  251. .title {
  252. align-items: center;
  253. font-family: "Barlow";
  254. display: flex;
  255. justify-content: center;
  256. align-items: center;
  257. font-weight: 600;
  258. font-size: 1.5rem;
  259. line-height: 18px;
  260. color: #091d20;
  261. margin-left: 5rem;
  262. margin-right: 5rem;
  263. }
  264. .screen-img {
  265. width: 20rem;
  266. height: 15rem;
  267. margin-top: 2rem;
  268. margin-left: 5rem;
  269. }
  270. .outil-row {
  271. margin-top: 5rem;
  272. margin-bottom: 5rem;
  273. }
  274. .yellow-square {
  275. margin-left: 14rem;
  276. width: 10rem;
  277. height: 7rem;
  278. background: #fac20a;
  279. color: #091d20;
  280. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  281. }
  282. </style>