Besoin.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <v-row
  4. v-if="!mdAndDown"
  5. class="mt-6"
  6. justify="center"
  7. >
  8. <v-col cols="6">
  9. <div class="screen-img ml-4" />
  10. </v-col>
  11. <v-col cols="6" >
  12. <h3 class="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. <b>Un besoin ?</b> <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 lang="ts">
  28. import { useDisplay } from "vuetify";
  29. const { 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. h3 {
  39. font-weight: 400;
  40. font-size: 1.5rem;
  41. line-height: 38px;
  42. margin-top: 1rem;
  43. margin-left: 2rem;
  44. color: #091d20;
  45. width: 16rem;
  46. }
  47. p {
  48. font-weight: 400;
  49. font-size: 1rem;
  50. margin-top: 3rem;
  51. margin-left: 2rem;
  52. color: #091d20;
  53. width: 20rem;
  54. text-align: justify;
  55. }
  56. .screen-img {
  57. background-image: url("/images/home/Repondre-aux-besoins-des-clients-Opentalent.png");
  58. background-position: center;
  59. background-size: cover;
  60. width: 700px;
  61. height: 500px;
  62. }
  63. </style>