Besoin.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <v-row class="white-container">
  4. <v-row>
  5. <v-col :cols="smAndDown ? 12 : 6">
  6. <v-img
  7. src="/images/eventAgenda/logiciel.png"
  8. :class="smAndDown ? 'screen-img-sm' : 'screen-img'"
  9. />
  10. </v-col>
  11. <div :class="smAndDown ? 'circle-sm' : 'circle'">
  12. <v-icon class="fa-brands fa-react icon" />
  13. <div class="circle-text">
  14. Réponse aux besoins
  15. </div>
  16. </div>
  17. <v-col cols="6">
  18. <h3
  19. :class="
  20. smAndDown ? 'title-event-sm d-flex justify-center' : 'title-event'
  21. "
  22. >
  23. Une solution évolutive pour vous donner entière satisfaction
  24. </h3>
  25. <p :class="smAndDown ? 'details-sm' : 'details'">
  26. La satisfaction de nos clients est notre première motivation et nous
  27. nous tenons à votre écoute pour faire évoluer notre logiciel. <br> <span class="bold">Un
  28. besoin ?</span> Notifiez le nous et après l'étude de votre demande en
  29. interne puis validation, nous intégrerons votre requête à notre
  30. processus de développement.
  31. </p>
  32. </v-col>
  33. </v-row>
  34. </v-row>
  35. </LayoutContainer>
  36. </template>
  37. <script setup>
  38. import { useDisplay } from "vuetify";
  39. const { smAndDown } = useDisplay();
  40. </script>
  41. <style scoped>
  42. .bold{
  43. }
  44. .btn-event-sm {
  45. font-family: "Barlow";
  46. font-style: normal;
  47. border-radius: 0.5rem;
  48. padding-top: 2rem;
  49. padding-bottom: 2rem;
  50. margin-top: 3rem;
  51. }
  52. .icon-arrow {
  53. font-size: 1rem;
  54. margin-left: 1rem;
  55. }
  56. .btn-container {
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. padding: 0 20rem;
  61. }
  62. .btn-event {
  63. font-family: "Barlow";
  64. font-style: normal;
  65. border-radius: 0.5rem;
  66. margin-left: 7vw;
  67. gap: 9px;
  68. font-weight: 700;
  69. font-size: 0.9rem;
  70. line-height: 15px;
  71. width: 18rem;
  72. height: 3rem;
  73. margin-top: 3rem;
  74. padding-top: 2rem;
  75. padding-bottom: 2rem;
  76. }
  77. .title {
  78. font-family: "Barlow";
  79. font-style: normal;
  80. height: 9rem;
  81. font-weight: 400;
  82. font-size: 3rem;
  83. line-height: 3rem;
  84. text-align: center;
  85. margin-bottom: 3rem;
  86. margin-top: 4rem;
  87. color: #ffffff;
  88. width: 45rem;
  89. }
  90. .title-container {
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. }
  95. .circle {
  96. position: absolute;
  97. left: 35%;
  98. margin-top: 0.5rem;
  99. width: 300px;
  100. height: 300px;
  101. background: #eff9fb;
  102. border-radius: 50%;
  103. }
  104. .circle-sm {
  105. position: absolute;
  106. left: 25%;
  107. margin-top: 15rem;
  108. width: 300px;
  109. height: 300px;
  110. background: #eff9fb;
  111. border-radius: 50%;
  112. }
  113. .icon {
  114. font-size: 3rem;
  115. font-weight: bold;
  116. color: #0e2d32;
  117. margin-top: 6rem;
  118. margin-left: 8rem;
  119. }
  120. .circle-text {
  121. font-style: normal;
  122. font-weight: 300;
  123. font-size: 22px;
  124. line-height: 26px;
  125. text-align: center;
  126. color: #0e2d32;
  127. font-family: "Barlow";
  128. font-style: normal;
  129. margin-top: 2rem;
  130. }
  131. .title-event {
  132. font-family: "Barlow";
  133. font-style: normal;
  134. font-weight: 400;
  135. font-size: 1.5rem;
  136. line-height: 38px;
  137. margin-top: 1rem;
  138. margin-left: 2rem;
  139. color: #091d20;
  140. width: 16rem;
  141. margin-left: 10rem;
  142. }
  143. .title-event-sm {
  144. font-family: "Barlow";
  145. font-style: normal;
  146. font-weight: 400;
  147. font-size: 1.5rem;
  148. line-height: 38px;
  149. margin-top: 13rem;
  150. color: #091d20;
  151. margin-left: 2rem;
  152. width: 30rem;
  153. text-align: center;
  154. }
  155. .details {
  156. font-weight: 400;
  157. font-size: 1rem;
  158. margin-top: 3rem;
  159. margin-left: 2rem;
  160. color: #091d20;
  161. width: 16rem;
  162. margin-left: 10rem;
  163. font-family: "Barlow";
  164. font-style: normal;
  165. }
  166. .details-sm {
  167. font-weight: 400;
  168. font-size: 1rem;
  169. margin-top: 3rem;
  170. margin-left: 2rem;
  171. color: #091d20;
  172. font-family: "Barlow";
  173. font-style: normal;
  174. width: 30rem;
  175. text-align: center;
  176. }
  177. .container-sm {
  178. margin-bottom: 60rem;
  179. }
  180. .white-container {
  181. margin-top: 9rem;
  182. background-color: #ffffff;
  183. }
  184. .screen-img {
  185. margin-left: 8rem;
  186. width: 60%;
  187. border-radius: 20%;
  188. }
  189. .screen-img-sm {
  190. width: 90%;
  191. margin-right: auto;
  192. margin-left: auto;
  193. border-radius: 20%;
  194. }
  195. </style>