Outil.vue 7.2 KB

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