SolutionsFooter.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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="4">
  13. <NuxtLink to="/opentalent_artist">
  14. <v-img src="/images/logo/logiciels/Artist-noir.png" class="logo" />
  15. </NuxtLink>
  16. </v-col>
  17. <!-- <v-col cols="2">
  18. <h5 class="solution-name">Opentalent Artist</h5>
  19. </v-col> -->
  20. <v-col cols="8">
  21. <!-- list v-chip-->
  22. <v-chip-group active-class="primary--text" column>
  23. <v-chip class="ma-2 chip-custom" label>
  24. <span class="chip-detail">Orchestres</span>
  25. </v-chip>
  26. <v-chip class="ma-2 chip-custom" label>
  27. <span class="chip-detail">Chorales</span>
  28. </v-chip>
  29. <v-chip class="ma-2 chip-custom" label>
  30. <span class="chip-detail">Compagnies de danse</span>
  31. </v-chip>
  32. <v-chip class="ma-2 chip-custom" label>
  33. <span class="chip-detail">Compagnies de théatre</span>
  34. </v-chip>
  35. <v-chip class="ma-2 chip-custom" label>
  36. <span class="chip-detail">Compagnie de Cirque</span>
  37. </v-chip>
  38. </v-chip-group>
  39. </v-col>
  40. </v-row>
  41. <v-row v-if="!hideManagerRow" class="row-manager">
  42. <v-col cols="4">
  43. <NuxtLink to="/opentalent_manager">
  44. <v-img src="/images/logo/logiciels/Manager-noir.png" class="logo" />
  45. </NuxtLink>
  46. </v-col>
  47. <!-- <v-col cols="2">
  48. <h5 class="solution-name">Opentalent Manager</h5>
  49. </v-col> -->
  50. <v-col cols="8">
  51. <!-- list v-chip-->
  52. <v-chip-group active-class="primary--text" column>
  53. <v-chip class="ma-2 chip-custom" color="primary" label>
  54. <span class="chip-detail">Fédérations</span>
  55. </v-chip>
  56. <v-chip class="ma-2 chip-custom" color="primary" label>
  57. <span class="chip-detail">Confédérations</span>
  58. </v-chip>
  59. <v-chip class="ma-2 chip-custom" color="primary" label>
  60. <span class="chip-detail">Collectivités</span>
  61. </v-chip>
  62. <v-chip class="ma-2 chip-custom" color="primary" label>
  63. <span class="chip-detail">Réseaux</span>
  64. </v-chip>
  65. </v-chip-group>
  66. </v-col>
  67. </v-row>
  68. <v-row v-if="!hideSchoolRow" class="row-school">
  69. <v-col cols="4">
  70. <NuxtLink to="/opentalent_school">
  71. <v-img src="/images/logo/logiciels/School-noir.png" class="logo" />
  72. </NuxtLink>
  73. </v-col>
  74. <!-- <v-col cols="2">
  75. <h5 class="solution-name">Opentalent Artist</h5>
  76. </v-col> -->
  77. <v-col cols="8">
  78. <!-- list v-chip-->
  79. <v-chip-group active-class="primary--text" column>
  80. <v-chip class="ma-2 chip-custom" label>
  81. <span class="chip-detail">Conservatoire</span>
  82. </v-chip>
  83. <v-chip class="ma-2 chip-custom" label>
  84. <span class="chip-detail">Écoles d'art</span>
  85. </v-chip>
  86. <v-chip class="ma-2 chip-custom" label>
  87. <span class="chip-detail">École de musique</span>
  88. </v-chip>
  89. <v-chip class="ma-2 chip-custom" label>
  90. <span class="chip-detail">École de danse</span>
  91. </v-chip>
  92. <v-chip class="ma-2 chip-custom" label>
  93. <span class="chip-detail">École de théâtre</span>
  94. </v-chip>
  95. <v-chip class="ma-2 chip-custom" label>
  96. <span class="chip-detail">École de cirque</span>
  97. </v-chip>
  98. <v-chip class="ma-2 chip-custom" label>
  99. <span class="chip-detail">MJC</span>
  100. </v-chip>
  101. </v-chip-group>
  102. </v-col>
  103. </v-row>
  104. </LayoutContainer>
  105. </div>
  106. </template>
  107. <script setup>
  108. import { useRoute } from "vue-router";
  109. const route = useRoute();
  110. const hideManagerRow = route.path.includes("opentalent_manager");
  111. const hideArtistRow = route.path.includes("opentalent_artist");
  112. const hideSchoolRow = route.path.includes("opentalent_school") || route.path.includes("formation");
  113. </script>
  114. <style scoped>
  115. .chip-detail {
  116. color: #000000;
  117. }
  118. .chip-custom {
  119. color: white;
  120. border: 1px solid #0e2d32;
  121. border-radius: 3rem;
  122. text-transform: uppercase;
  123. font-family: "Barlow";
  124. font-style: normal;
  125. font-weight: 500;
  126. font-size: 14px;
  127. line-height: 16px;
  128. display: flex;
  129. align-items: center;
  130. text-align: center;
  131. letter-spacing: 0.2em;
  132. }
  133. .row-artist,
  134. .row-school,
  135. .row-manager {
  136. border-top: 1px solid #d1cdc7;
  137. margin-left: 2rem;
  138. margin-right: 2rem;
  139. }
  140. .solution-name {
  141. font-family: "Barlow";
  142. font-style: normal;
  143. font-weight: 300;
  144. font-size: 1.5rem;
  145. line-height: 1.5rem;
  146. color: #0e2d32;
  147. }
  148. .row-artist,
  149. .row-school,
  150. .row-manager {
  151. display: flex;
  152. flex-direction: row;
  153. align-items: center;
  154. }
  155. .solution-title {
  156. font-family: "Barlow";
  157. font-style: normal;
  158. font-weight: 500;
  159. font-size: 1.5rem;
  160. line-height: 1.5rem;
  161. color: #000000;
  162. margin-top: 2rem;
  163. margin-bottom: 2rem;
  164. text-align: center;
  165. }
  166. .logo {
  167. width: 20rem;
  168. height: 10rem;
  169. margin-left: 2rem;
  170. margin-right: 2rem;
  171. }
  172. </style>