Solutions.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <div id="solutions">
  3. <LayoutContainer>
  4. <v-row>
  5. <v-col cols="12">
  6. <h4 class="solution-title text-center">
  7. Ces solutions peuvent vous intéresser
  8. </h4>
  9. </v-col>
  10. </v-row>
  11. <v-row v-if="!hideArtistRow" class="row-artist">
  12. <v-col cols="3">
  13. <v-img src="/images/logo/logiciels/Artist-noir.png" class="logo" />
  14. </v-col>
  15. <v-col cols="2">
  16. <h5 class="solution-name">Opentalent Artist</h5>
  17. </v-col>
  18. <v-col cols="7">
  19. <!-- list v-chip-->
  20. <v-chip-group active-class="primary--text" column>
  21. <v-chip class="ma-2 chip-custom" label>
  22. <span class="chip-detail">Agenda</span>
  23. </v-chip>
  24. <v-chip class="ma-2 chip-custom" label>
  25. <span class="chip-detail">Facturation</span>
  26. </v-chip>
  27. <v-chip class="ma-2 chip-custom" label>
  28. <span class="chip-detail">Comptabilité</span>
  29. </v-chip>
  30. <v-chip class="ma-2 chip-custom" label>
  31. <span class="chip-detail">Communication</span>
  32. </v-chip>
  33. <v-chip class="ma-2 chip-custom" label>
  34. <span class="chip-detail">Site internet</span>
  35. </v-chip>
  36. </v-chip-group>
  37. </v-col>
  38. </v-row>
  39. <v-row v-if="!hideManagerRow" class="row-manager">
  40. <v-col cols="3">
  41. <v-img src="/images/logo/logiciels/Manager-noir.png" class="logo" />
  42. </v-col>
  43. <v-col cols="2">
  44. <h5 class="solution-name">Opentalent Manager</h5>
  45. </v-col>
  46. <v-col cols="7">
  47. <!-- list v-chip-->
  48. <v-chip-group active-class="primary--text" column>
  49. <v-chip class="ma-2 chip-custom" color="primary" label>
  50. <span class="chip-detail">Agenda</span>
  51. </v-chip>
  52. <v-chip class="ma-2 chip-custom" color="primary" label>
  53. <span class="chip-detail">Facturation</span>
  54. </v-chip>
  55. <v-chip class="ma-2 chip-custom" color="primary" label>
  56. <span class="chip-detail">Comptabilité</span>
  57. </v-chip>
  58. <v-chip class="ma-2 chip-custom" color="primary" label>
  59. <span class="chip-detail">Communication</span>
  60. </v-chip>
  61. <v-chip class="ma-2 chip-custom" color="primary" label>
  62. <span class="chip-detail">Site internet</span>
  63. </v-chip>
  64. </v-chip-group>
  65. </v-col>
  66. </v-row>
  67. <v-row v-if="!hideSchoolRow" class="row-school">
  68. <v-col cols="3">
  69. <v-img src="/images/logo/logiciels/School-noir.png" class="logo" />
  70. </v-col>
  71. <v-col cols="2">
  72. <h5 class="solution-name">Opentalent Artist</h5>
  73. </v-col>
  74. <v-col cols="7">
  75. <!-- list v-chip-->
  76. <v-chip-group active-class="primary--text" column>
  77. <v-chip class="ma-2 chip-custom" label>
  78. <span class="chip-detail">Agenda</span>
  79. </v-chip>
  80. <v-chip class="ma-2 chip-custom" label>
  81. <span class="chip-detail">Facturation</span>
  82. </v-chip>
  83. <v-chip class="ma-2 chip-custom" label>
  84. <span class="chip-detail">Comptabilité</span>
  85. </v-chip>
  86. <v-chip class="ma-2 chip-custom" label>
  87. <span class="chip-detail">Communication</span>
  88. </v-chip>
  89. <v-chip class="ma-2 chip-custom" label>
  90. <span class="chip-detail">Site internet</span>
  91. </v-chip>
  92. </v-chip-group>
  93. </v-col>
  94. </v-row>
  95. </LayoutContainer>
  96. </div>
  97. </template>
  98. <script setup>
  99. import { useRoute } from "vue-router";
  100. const route = useRoute();
  101. // Check the URL and set variables to determine which rows to hide
  102. const hideManagerRow = route.path.includes("opentalent_manager");
  103. const hideArtistRow = route.path.includes("opentalent_artist");
  104. const hideSchoolRow = route.path.includes("opentalent_school");
  105. </script>
  106. <style scoped>
  107. .chip-detail {
  108. color: #000000;
  109. }
  110. .chip-custom {
  111. color: white;
  112. border: 1px solid #0e2d32;
  113. border-radius: 3rem;
  114. text-transform: uppercase;
  115. font-family: "Barlow";
  116. font-style: normal;
  117. font-weight: 500;
  118. font-size: 14px;
  119. line-height: 16px;
  120. display: flex;
  121. align-items: center;
  122. text-align: center;
  123. letter-spacing: 0.2em;
  124. }
  125. .row-artist,
  126. .row-school,
  127. .row-manager {
  128. border-top: 1px solid #d1cdc7;
  129. margin-left: 2rem;
  130. margin-right: 2rem;
  131. }
  132. .solution-name {
  133. font-family: "Barlow";
  134. font-style: normal;
  135. font-weight: 300;
  136. font-size: 1.5rem;
  137. line-height: 1.5rem;
  138. color: #0e2d32;
  139. }
  140. .row-artist, .row-school, .row-manager {
  141. display: flex;
  142. flex-direction: row;
  143. align-items: center;
  144. }
  145. .solution-title {
  146. font-family: "Barlow";
  147. font-style: normal;
  148. font-weight: 500;
  149. font-size: 1.5rem;
  150. line-height: 1.5rem;
  151. color: #000000;
  152. margin-top: 2rem;
  153. margin-bottom: 2rem;
  154. text-align: center;
  155. }
  156. .logo {
  157. width: 17rem;
  158. height: 10rem;
  159. margin-left: 2rem;
  160. margin-right: 2rem;
  161. }
  162. </style>