Solutions.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <div id="solutions">
  3. <LayoutContainer>
  4. <v-row class="center-90">
  5. <v-col cols="12">
  6. <LayoutUISubTitle>
  7. NOS LOGICIELS OPENTALENT
  8. </LayoutUISubTitle>
  9. <LayoutUITitle>
  10. Ces solutions peuvent aussi vous intéresser
  11. </LayoutUITitle>
  12. </v-col>
  13. </v-row>
  14. <v-row
  15. v-if="showArtist"
  16. class="row-artist"
  17. >
  18. <v-col cols="2">
  19. <NuxtLink to="/opentalent_artist">
  20. <v-img src="/images/logo/logiciels/Artist-noir.png" class="logo" />
  21. </NuxtLink>
  22. </v-col>
  23. <v-col cols="10">
  24. <!-- list v-chip-->
  25. <v-chip-group column disabled>
  26. <v-chip class="ma-2 chip-custom" label>
  27. <span class="chip-detail">Orchestres</span>
  28. </v-chip>
  29. <v-chip class="ma-2 chip-custom" label>
  30. <span class="chip-detail">Chorales</span>
  31. </v-chip>
  32. <v-chip class="ma-2 chip-custom" label>
  33. <span class="chip-detail">Compagnies de danse</span>
  34. </v-chip>
  35. <v-chip class="ma-2 chip-custom" label>
  36. <span class="chip-detail">Compagnies de théatre</span>
  37. </v-chip>
  38. <v-chip class="ma-2 chip-custom" label>
  39. <span class="chip-detail">Compagnies de Cirque</span>
  40. </v-chip>
  41. </v-chip-group>
  42. </v-col>
  43. </v-row>
  44. <v-row
  45. v-if="showManager"
  46. class="row-manager"
  47. >
  48. <v-col cols="2">
  49. <NuxtLink to="/opentalent_manager">
  50. <v-img src="/images/logo/logiciels/Manager-noir.png" class="logo" />
  51. </NuxtLink>
  52. </v-col>
  53. <v-col cols="10">
  54. <!-- list v-chip-->
  55. <v-chip-group column disabled>
  56. <v-chip class="ma-2 chip-custom" color="primary" label>
  57. <span class="chip-detail">Fédérations</span>
  58. </v-chip>
  59. <v-chip class="ma-2 chip-custom" color="primary" label>
  60. <span class="chip-detail">Confédérations</span>
  61. </v-chip>
  62. <v-chip class="ma-2 chip-custom" color="primary" label>
  63. <span class="chip-detail">Collectivités</span>
  64. </v-chip>
  65. <v-chip class="ma-2 chip-custom" color="primary" label>
  66. <span class="chip-detail">Réseaux</span>
  67. </v-chip>
  68. </v-chip-group>
  69. </v-col>
  70. </v-row>
  71. <v-row
  72. v-if="showSchool"
  73. class="row-school"
  74. >
  75. <v-col cols="2">
  76. <NuxtLink to="/opentalent_school">
  77. <v-img src="/images/logo/logiciels/School-noir.png" class="logo" />
  78. </NuxtLink>
  79. </v-col>
  80. <v-col cols="10">
  81. <!-- list v-chip-->
  82. <v-chip-group column disabled>
  83. <v-chip class="ma-2 chip-custom" label>
  84. <span class="chip-detail">Conservatoire</span>
  85. </v-chip>
  86. <v-chip class="ma-2 chip-custom" label>
  87. <span class="chip-detail">Écoles d'art</span>
  88. </v-chip>
  89. <v-chip class="ma-2 chip-custom" label>
  90. <span class="chip-detail">École de musique</span>
  91. </v-chip>
  92. <v-chip class="ma-2 chip-custom" label>
  93. <span class="chip-detail">École de danse</span>
  94. </v-chip>
  95. <v-chip class="ma-2 chip-custom" label>
  96. <span class="chip-detail">École de théâtre</span>
  97. </v-chip>
  98. <v-chip class="ma-2 chip-custom" label>
  99. <span class="chip-detail">École de cirque</span>
  100. </v-chip>
  101. <v-chip class="ma-2 chip-custom" label>
  102. <span class="chip-detail">MJC</span>
  103. </v-chip>
  104. </v-chip-group>
  105. </v-col>
  106. </v-row>
  107. </LayoutContainer>
  108. </div>
  109. </template>
  110. <script setup lang="ts">
  111. const props = defineProps({
  112. showArtist: {
  113. type: Boolean,
  114. required: false,
  115. default: true
  116. },
  117. showSchool: {
  118. type: Boolean,
  119. required: false,
  120. default: true
  121. },
  122. showManager: {
  123. type: Boolean,
  124. required: false,
  125. default: true
  126. },
  127. })
  128. </script>
  129. <style scoped lang="scss">
  130. .chip-detail {
  131. color: var(--on-neutral-color);
  132. }
  133. .chip-custom {
  134. opacity: 1;
  135. color: var(--on-primary-color);
  136. border: 1px solid var(--primary-color);
  137. border-radius: 3rem;
  138. text-transform: uppercase;
  139. font-weight: 500;
  140. font-size: 10px;
  141. line-height: 16px;
  142. display: flex;
  143. align-items: center;
  144. text-align: center;
  145. letter-spacing: 0.2em;
  146. }
  147. .row-artist,
  148. .row-school,
  149. .row-manager {
  150. display: flex;
  151. flex-direction: row;
  152. align-items: center;
  153. border-top: 1px solid var(--on-primary-color-alt);
  154. }
  155. .solution-title {
  156. font-weight: 500;
  157. font-size: 1.5rem;
  158. line-height: 1.5rem;
  159. color: var(--on-neutral-color);
  160. margin-top: 2rem;
  161. margin-bottom: 2rem;
  162. text-align: center;
  163. }
  164. .logo {
  165. width: 15rem;
  166. height: 10rem;
  167. margin-left: .5rem;
  168. margin-right: 2rem;
  169. }
  170. </style>