Presentation.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <template>
  2. <div id="Presentation">
  3. <LayoutContainer>
  4. <v-row class="outil-row">
  5. <v-col cols="4">
  6. <div class="title-container">
  7. <v-icon size="6" class="fa-solid fa-circle icon-title" />
  8. <h4 class="subtitle">Présentation d'opentalent Manager</h4>
  9. </div>
  10. <v-img
  11. src="/images/logiciels/school/screen.jpg"
  12. class="screen-img"
  13. />
  14. <div class="rectangle-4">
  15. <div class="black-circle">
  16. <div class="content-flex">
  17. <v-img
  18. src="/images/logo/logiciels/Manager-Blanc.png"
  19. class="logo-manager"
  20. />
  21. <p class="devis">
  22. Sur devis
  23. </p>
  24. </div>
  25. </div>
  26. </div>
  27. </v-col>
  28. <v-col cols="5">
  29. <h2 class="outil-title">
  30. La solution de mise en réseau des organisations culturelles
  31. </h2>
  32. <ul class="outil-ul">
  33. <li class="outil-list">
  34. Logiciel de gestion et communication en ligne
  35. </li>
  36. <li class="outil-list">
  37. Répond aux besoin globaux des réseaux culturels
  38. </li>
  39. <li class="outil-list">
  40. Gestion collaborative
  41. </li>
  42. <li class="outil-list">
  43. Mise en valeur des activités des membres du réseau
  44. </li>
  45. </ul>
  46. </v-col>
  47. <v-row>
  48. <v-col cols="4" />
  49. <v-col cols="5">
  50. <h2>Des caractéristiques uniques & dédiées</h2>
  51. <div class="picto-container">
  52. <div class="picto-group">
  53. <v-img
  54. class="picto-img"
  55. src="/images/logiciels/manager/picto1.png"
  56. />
  57. <p class="picto-text">
  58. Logiciel de gestion & communication full web
  59. </p>
  60. </div>
  61. <div class="picto-group">
  62. <v-img
  63. class="picto-img"
  64. src="/images/logiciels/manager/picto2.png"
  65. />
  66. <p class="picto-text">
  67. Boostez votre visibilité & votre communication
  68. </p>
  69. </div>
  70. <div class="picto-group">
  71. <v-img
  72. class="picto-img"
  73. src="/images/logiciels/manager/picto3.png"
  74. />
  75. <p class="picto-text">
  76. Site web intégré & simple d'usage
  77. </p>
  78. </div>
  79. <div class="picto-group">
  80. <v-img
  81. class="picto-img"
  82. src="/images/logiciels/manager/picto4.png"
  83. />
  84. <p class="picto-text">
  85. Communiquez en réseau
  86. </p>
  87. </div>
  88. <div class="picto-group">
  89. <v-img
  90. class="picto-img"
  91. src="/images/logiciels/manager/picto5.png"
  92. />
  93. <p class="picto-text">
  94. Sur-Mesure
  95. </p>
  96. </div>
  97. <div class="picto-group">
  98. <v-img
  99. class="picto-img"
  100. src="/images/logiciels/manager/picto6.png"
  101. />
  102. <p class="picto-text">
  103. Pour tout réseau de type pyramidal
  104. </p>
  105. </div>
  106. </div>
  107. </v-col>
  108. <v-col cols="2" />
  109. </v-row>
  110. </v-row>
  111. </LayoutContainer>
  112. </div>
  113. </template>
  114. <script setup></script>
  115. <style scoped>
  116. .title-container {
  117. display: flex;
  118. justify-content: center;
  119. align-items: center;
  120. font-weight: 600;
  121. font-size: 1.5rem;
  122. line-height: 18px;
  123. color: #091d20;
  124. width: 25rem;
  125. margin-left: 2rem;
  126. }
  127. .subtitle {
  128. color: #071b1f;
  129. font-family: "Barlow";
  130. font-size: 1rem;
  131. font-style: normal;
  132. font-weight: 600;
  133. line-height: 15px;
  134. letter-spacing: 1.8px;
  135. text-transform: uppercase;
  136. }
  137. .title {
  138. font-family: "Barlow";
  139. font-weight: 600;
  140. font-size: 3rem;
  141. line-height: 18px;
  142. color: #091d20;
  143. margin-bottom: 4rem;
  144. }
  145. .title-logiciel-group {
  146. display: flex;
  147. flex-direction: row;
  148. align-items: center;
  149. }
  150. .devis {
  151. font-family: "Barlow";
  152. font-style: normal;
  153. font-weight: 500;
  154. font-size: 1rem;
  155. margin-left: 9rem;
  156. width: 7rem;
  157. }
  158. .black-circle {
  159. border-radius: 3rem;
  160. background: #091d20;
  161. width: 7rem;
  162. height: 6rem;
  163. }
  164. .logo-manager {
  165. top: 2rem;
  166. margin-left: 0.3rem;
  167. margin-right: 0.5rem;
  168. z-index: 1;
  169. }
  170. .rectangle-4 {
  171. width: 18rem;
  172. height: 6rem;
  173. background: rgba(216, 5, 11, 0.2);
  174. border-radius: 3rem;
  175. margin-left: 5rem;
  176. margin-top: 2rem;
  177. }
  178. .outil-subtitle {
  179. font-family: "Barlow";
  180. font-style: normal;
  181. font-weight: 600;
  182. font-size: 1rem;
  183. color: #091d20;
  184. margin-right: 2rem;
  185. }
  186. .text-square {
  187. font-family: "Barlow";
  188. margin-left: 2rem;
  189. margin-right: 2rem;
  190. margin-top: 0.9rem;
  191. text-align: center;
  192. }
  193. .icon-subtitle {
  194. font-size: 2rem;
  195. margin-right: 1rem;
  196. color: #d8050b;
  197. }
  198. .icon {
  199. margin-top: 2rem;
  200. color: #ffffff;
  201. }
  202. .container-square {
  203. display: flex;
  204. flex-direction: column;
  205. justify-content: space-between;
  206. color: white;
  207. font-family: "Barlow";
  208. font-style: normal;
  209. font-weight: 500;
  210. font-size: 0.7rem;
  211. line-height: 15px;
  212. text-align: center;
  213. letter-spacing: 0.2em;
  214. text-transform: uppercase;
  215. }
  216. .outil-title {
  217. font-family: "Barlow";
  218. font-style: normal;
  219. font-weight: 600;
  220. font-size: 3rem;
  221. line-height: 3rem;
  222. color: #091d20;
  223. margin-bottom: 2rem;
  224. margin-right: 9rem;
  225. }
  226. .outil-ul {
  227. margin-left: 1rem;
  228. font-family: "Barlow";
  229. font-style: normal;
  230. font-weight: 300;
  231. font-size: 1rem;
  232. line-height: 1.5rem;
  233. }
  234. .citation-school {
  235. font-family: "Barlow";
  236. font-style: italic;
  237. font-weight: 300;
  238. font-size: 2rem;
  239. width: 3rem;
  240. line-height: 40px;
  241. color: #ffffff;
  242. font-style: italic;
  243. margin-top: 20rem;
  244. margin-left: 5rem;
  245. }
  246. .icon-logiciel {
  247. font-size: 2rem;
  248. color: #d8050b;
  249. margin-left: 5rem;
  250. margin-top: 4rem;
  251. }
  252. .icon-title {
  253. margin-right: 1.5rem;
  254. color: #d8050b;
  255. }
  256. .subtitle-logiciel {
  257. font-family: "Barlow";
  258. font-style: normal;
  259. font-weight: 600;
  260. font-size: 1.5rem;
  261. line-height: 18px;
  262. color: #ffffff;
  263. margin-left: 2rem;
  264. margin-right: 15rem;
  265. margin-top: 4rem;
  266. top: 10rem;
  267. }
  268. .screen2-img {
  269. width: 50rem;
  270. height: 40rem;
  271. bottom: 7rem;
  272. }
  273. .container-green {
  274. background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
  275. rgba(7, 27, 31, 0.3);
  276. height: 35rem;
  277. }
  278. .picto-container {
  279. display: flex;
  280. flex-direction: row;
  281. justify-content: space-between;
  282. margin-left: -15rem;
  283. }
  284. .picto-img {
  285. width: 14rem;
  286. height: 14rem;
  287. }
  288. .picto-group {
  289. display: flex;
  290. flex-direction: column;
  291. align-items: center;
  292. }
  293. .picto-text {
  294. font-family: "Barlow";
  295. font-style: normal;
  296. font-weight: 300;
  297. font-size: 0.9rem;
  298. margin-top: -3rem;
  299. text-align: center;
  300. margin-right: 2rem;
  301. margin-left: 2rem;
  302. }
  303. .title {
  304. display: flex;
  305. justify-content: center;
  306. align-items: center;
  307. font-family: "Barlow";
  308. font-style: normal;
  309. font-weight: 600;
  310. font-size: 1.5rem;
  311. line-height: 18px;
  312. color: #091d20;
  313. margin-left: 5rem;
  314. margin-right: 15rem;
  315. }
  316. .screen-img {
  317. width: 20rem;
  318. height: 15rem;
  319. margin-top: 2rem;
  320. margin-left: 5rem;
  321. }
  322. .outil-row {
  323. margin-top: 5rem;
  324. margin-bottom: 5rem;
  325. }
  326. .darkblue-square {
  327. width: 10rem;
  328. height: 7rem;
  329. background: #0e2d32;
  330. margin-left: 14rem;
  331. }
  332. .red-square {
  333. margin-left: 14rem;
  334. width: 10rem;
  335. height: 7rem;
  336. background: #d8050b;
  337. }
  338. </style>