Besoin.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <v-row class="mt-6" justify="center" v-if="!mdAndDown" >
  4. <v-col cols="6" class="relative-container" >
  5. <div class="screen-img ml-4"></div>
  6. <!-- <div class="circle">
  7. <v-icon class="fa-brands fa-react icon" />
  8. <div class="circle-text">Réponse aux besoins</div>
  9. </div> -->
  10. </v-col>
  11. <v-col cols="6" >
  12. <h3 class="title-event mt-12">
  13. Une solution évolutive pour vous donner entière satisfaction
  14. </h3>
  15. <p class="details ">
  16. La satisfaction de nos clients est notre première motivation et nous
  17. nous tenons à votre écoute pour faire évoluer notre logiciel. <br />
  18. <span class="bold">Un besoin ?</span> <br />
  19. Notifiez le nous et après l'étude de votre demande en interne puis
  20. validation, nous intégrerons votre requête à notre processus de
  21. développement.
  22. </p>
  23. </v-col>
  24. </v-row>
  25. </LayoutContainer>
  26. </template>
  27. <script setup>
  28. import { useDisplay } from "vuetify";
  29. const { smAndDown, mdAndDown } = useDisplay();
  30. </script>
  31. <style scoped>
  32. .v-row
  33. {
  34. margin-left:auto !important;
  35. margin-right: auto !important;
  36. max-width: 1400px !important;
  37. }
  38. .relative-container {
  39. position: relative;
  40. }
  41. .bold {
  42. font-weight: bold;
  43. }
  44. .title-event {
  45. font-weight: 400;
  46. font-size: 1.5rem;
  47. line-height: 38px;
  48. margin-top: 1rem;
  49. margin-left: 2rem;
  50. color: #091d20;
  51. width: 16rem;
  52. }
  53. .details {
  54. font-weight: 400;
  55. font-size: 1rem;
  56. margin-top: 3rem;
  57. margin-left: 2rem;
  58. color: #091d20;
  59. width: 20rem;
  60. text-align: justify;
  61. }
  62. .screen-img {
  63. background-image: url("/images/home/Repondre-aux-besoins-des-clients-Opentalent.png");
  64. background-position: center;
  65. background-size: cover;
  66. width: 700px;
  67. height: 500px;
  68. }
  69. </style>