SolutionsFooter.vue 4.9 KB

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