OutilPresentation.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. <template>
  2. <div class="custom-presentation">
  3. <LayoutContainer>
  4. <v-row class="outil-row">
  5. <v-col cols="4">
  6. <div class="title">
  7. <v-icon size="6" :class="iconColorClass" />
  8. <h4 class="presentation-title">{{ presentationTitle }}</h4>
  9. </div>
  10. <v-img :src="screenImage" class="screen-img" />
  11. <div class="rectangle-4">
  12. <div class="black-circle">
  13. <div class="content-flex">
  14. <v-img :src="logoImage" class="logo-manager" />
  15. <div class="pricing-details">
  16. <p class="pricing-small-text">{{ pricingSmallText }}</p>
  17. <p class="pricing-big-text">{{ pricingAmount }} <span class="smaller-text">{{ pricingFrequency }}</span></p>
  18. <p class="pricing-small-text">{{ pricingPayable }}</p>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </v-col>
  24. <v-col cols="5">
  25. <h2 class="outil-title">{{ toolTitle }}</h2>
  26. <ul class="outil-ul">
  27. <li class="outil-list">{{ toolFeature1 }}</li>
  28. <li class="outil-list">{{ toolFeature2 }}</li>
  29. <li class="outil-list">{{ toolFeature3 }}</li>
  30. <li class="outil-list">{{ toolFeature4 }}</li>
  31. </ul>
  32. </v-col>
  33. <v-row class="row-caracteristiques">
  34. <v-col cols="4" />
  35. <v-col cols="6">
  36. <h2>{{ uniqueFeaturesTitle }}</h2>
  37. <div class="picto-container">
  38. <div class="picto-group" v-for="(feature, index) in uniqueFeatures" :key="index">
  39. <v-img class="picto-img" :src="feature.image" />
  40. <p class="picto-text">{{ feature.text }}</p>
  41. </div>
  42. </div>
  43. </v-col>
  44. <v-col cols="2" />
  45. </v-row>
  46. </v-row>
  47. <v-row class="container-green">
  48. <v-row>
  49. <v-col cols="6">
  50. <p class="citation-school">{{ citationText }}</p>
  51. </v-col>
  52. </v-row>
  53. <v-col cols="6">
  54. <div class="subtitle-logiciel">
  55. <v-icon size="10" :class="iconLogicielColorClass" />
  56. <h6>{{ logicielTitle }}</h6>
  57. </div>
  58. <v-img :src="logicielImage" class="screen2-img" />
  59. </v-col>
  60. </v-row>
  61. </LayoutContainer>
  62. </div>
  63. </template>
  64. <script setup>
  65. const props = defineProps({
  66. presentationTitle: String,
  67. iconColorClass: String,
  68. screenImage: String,
  69. logoImage: String,
  70. pricingSmallText: String,
  71. pricingAmount: String,
  72. pricingFrequency: String,
  73. pricingPayable: String,
  74. toolTitle: String,
  75. toolFeature1: String,
  76. toolFeature2: String,
  77. toolFeature3: String,
  78. toolFeature4: String,
  79. uniqueFeaturesTitle: String,
  80. uniqueFeatures: Array,
  81. citationText: String,
  82. iconLogicielColorClass: String,
  83. logicielTitle: String,
  84. logicielImage: String,
  85. });
  86. </script>
  87. <script setup>
  88. import { ref, defineProps } from 'vue';
  89. const props = defineProps({
  90. presentationTitle: String,
  91. screenImageSrc: String,
  92. logoSrc: String,
  93. pricingSmallText: String,
  94. pricingBigText: String,
  95. pricingSmallTextSuffix: String,
  96. pricingSmallTextPayable: String,
  97. toolTitle: String,
  98. toolList: Array,
  99. featuresTitle: String,
  100. featuresList: Array,
  101. citationText: String,
  102. logicielTitle: String,
  103. secondScreenImageSrc: String,
  104. containerStyle: Object,
  105. titleClass: String,
  106. iconClass: String,
  107. outilTitleClass: String,
  108. outilListClass: String,
  109. featuresTitleClass: String,
  110. pictoTextClass: String,
  111. citationStyle: Object,
  112. logicielIconClass: String,
  113. logicielTitleClass: String,
  114. pictoImages: Array,
  115. });
  116. </script>
  117. <style scoped>
  118. .row-caracteristiques {
  119. margin-top: -10rem;
  120. }
  121. .pricing-details {
  122. display: flex;
  123. flex-direction: column;
  124. justify-content: center;
  125. align-items: center;
  126. height: 100%;
  127. color: black;
  128. font-weight: 500;
  129. font-size: 1rem;
  130. margin-left: 7rem;
  131. margin-top: -2.5rem;
  132. width: 10rem;
  133. }
  134. .pricing-small-text {
  135. font-size: 0.6em;
  136. }
  137. .pricing-big-text {
  138. font-size: 1.6em;
  139. font-weight: bold;
  140. }
  141. .smaller-text {
  142. font-size: 0.6em;
  143. }
  144. .presentation-title {
  145. color: #071b1f;
  146. font-family: Barlow;
  147. font-size: 1rem;
  148. font-style: normal;
  149. font-weight: 600;
  150. line-height: 15px;
  151. letter-spacing: 1.8px;
  152. text-transform: uppercase;
  153. }
  154. .black-circle {
  155. border-radius: 3rem;
  156. background: #091d20;
  157. width: 7rem;
  158. height: 6rem;
  159. }
  160. .devis {
  161. font-weight: 500;
  162. font-size: 1rem;
  163. margin-left: 9rem;
  164. margin-top: -1rem;
  165. width: 7rem;
  166. }
  167. .logo-manager {
  168. top: 1rem;
  169. margin-left: 0.3rem;
  170. margin-right: 0.5rem;
  171. z-index: 1;
  172. }
  173. .rectangle-4 {
  174. width: 18rem;
  175. height: 6rem;
  176. background: rgba(32, 147, 190, 0.2);
  177. border-radius: 3rem;
  178. margin-left: 5rem;
  179. margin-top: 2rem;
  180. }
  181. .picto-text {
  182. font-weight: 300;
  183. font-size: 0.9rem;
  184. margin-top: -3rem;
  185. text-align: center;
  186. margin-right: 2rem;
  187. margin-left: 2rem;
  188. }
  189. .picto-container {
  190. display: flex;
  191. flex-direction: row;
  192. justify-content: space-between;
  193. margin-left: -15rem;
  194. }
  195. .picto-group {
  196. display: flex;
  197. flex-direction: column;
  198. align-items: center;
  199. }
  200. .icon-title {
  201. margin-right: 0.7rem;
  202. color: rgba(32, 147, 190, 0.6);
  203. }
  204. .text-square {
  205. margin-left: 2rem;
  206. margin-right: 2rem;
  207. margin-top: 0.9rem;
  208. text-align: center;
  209. }
  210. .icon {
  211. margin-top: 1rem;
  212. }
  213. .container-square {
  214. display: flex;
  215. flex-direction: column;
  216. justify-content: space-between;
  217. color: white;
  218. font-weight: 500;
  219. font-size: 0.7rem;
  220. line-height: 15px;
  221. text-align: center;
  222. letter-spacing: 0.2em;
  223. text-transform: uppercase;
  224. }
  225. .outil-title {
  226. font-family: "Barlow";
  227. font-weight: 600;
  228. font-size: 3rem;
  229. line-height: 18px;
  230. color: #091d20;
  231. margin-bottom: 4rem;
  232. }
  233. .outil-ul {
  234. font-family: "Barlow";
  235. margin-left: 1rem;
  236. font-weight: 300;
  237. font-size: 1rem;
  238. line-height: 1.5rem;
  239. }
  240. .citation-school {
  241. font-style: italic;
  242. font-weight: 300;
  243. font-size: 2rem;
  244. width: 38rem;
  245. line-height: 40px;
  246. color: #ffffff;
  247. font-style: italic;
  248. margin-top: 20rem;
  249. margin-left: 2rem;
  250. }
  251. .subtitle-logiciel {
  252. display: flex;
  253. align-items: center;
  254. font-weight: 600;
  255. font-size: 1.5rem;
  256. line-height: 18px;
  257. color: #ffffff;
  258. margin-left: 5rem;
  259. margin-right: 15rem;
  260. margin-top: 4rem;
  261. top: 10rem;
  262. }
  263. .icon-logiciel {
  264. color: rgba(32, 147, 190, 0.6);
  265. margin-right: 1rem;
  266. }
  267. .container-green {
  268. background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
  269. rgba(7, 27, 31, 0.3);
  270. height: 45rem;
  271. }
  272. .picto-container {
  273. display: flex;
  274. justify-content: flex-start;
  275. padding: 0 2rem;
  276. }
  277. .picto-img {
  278. width: 14rem;
  279. height: 14rem;
  280. }
  281. .title {
  282. display: flex;
  283. justify-content: center;
  284. align-items: center;
  285. font-weight: 600;
  286. font-size: 1.5rem;
  287. line-height: 18px;
  288. color: #091d20;
  289. width: 25rem;
  290. margin-left: 2rem;
  291. }
  292. .screen-img {
  293. width: 20rem;
  294. height: 15rem;
  295. margin-top: 2rem;
  296. margin-left: 5rem;
  297. }
  298. .outil-row {
  299. margin-top: 5rem;
  300. margin-bottom: 5rem;
  301. }
  302. .darkblue-square {
  303. font-family: "Barlow";
  304. width: 10rem;
  305. height: 7rem;
  306. background: #0e2d32;
  307. margin-left: 14rem;
  308. }
  309. .blue-square {
  310. font-family: "Barlow";
  311. margin-left: 14rem;
  312. width: 10rem;
  313. height: 7rem;
  314. background: rgba(32, 147, 190, 0.6);
  315. }
  316. </style>