Solutions.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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 center-90"
  17. >
  18. <v-col cols="6" md="2">
  19. <NuxtLink to="/opentalent_artist">
  20. <v-img src="/images/logos/opentalent/Logo_Opentalent_Artist-gris.png" class="logo" />
  21. </NuxtLink>
  22. </v-col>
  23. <v-col cols="6" md="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 center-90"
  47. >
  48. <v-col cols="6" md="2">
  49. <NuxtLink to="/opentalent_manager">
  50. <v-img src="/images/logos/opentalent/Logo_Opentalent_Manager-gris.png" class="logo" />
  51. </NuxtLink>
  52. </v-col>
  53. <v-col cols="6" md="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 center-90"
  74. >
  75. <v-col cols="6" md="2">
  76. <NuxtLink to="/opentalent_school">
  77. <v-img src="/images/logos/opentalent/Logo_Opentalent_School-gris.png" class="logo" />
  78. </NuxtLink>
  79. </v-col>
  80. <v-col cols="6" md="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. @media (max-width: 600px) {
  133. width: 100%;
  134. text-align: center;
  135. }
  136. }
  137. .chip-custom {
  138. opacity: 1;
  139. color: var(--on-primary-color);
  140. border: 1px solid var(--primary-color);
  141. border-radius: 3rem;
  142. text-transform: uppercase;
  143. font-weight: 500;
  144. line-height: 16px;
  145. display: flex;
  146. align-items: center;
  147. text-align: center;
  148. letter-spacing: 0.2em;
  149. @media (max-width: 600px) {
  150. font-size: 10px !important;
  151. width: 90%;
  152. margin-left: auto;
  153. margin-right: auto;
  154. text-align: center;
  155. :deep(.v-chip__content) {
  156. width: 100%;
  157. }
  158. }
  159. }
  160. .row-artist,
  161. .row-school,
  162. .row-manager {
  163. display: flex;
  164. flex-direction: row;
  165. align-items: center;
  166. border-top: 1px solid var(--on-primary-color-alt);
  167. }
  168. .solution-title {
  169. font-weight: 500;
  170. font-size: 1.5rem;
  171. line-height: 1.5rem;
  172. color: var(--on-neutral-color);
  173. margin-top: 2rem;
  174. margin-bottom: 2rem;
  175. text-align: center;
  176. }
  177. .logo {
  178. width: 15rem;
  179. height: 10rem;
  180. margin-left: .5rem;
  181. margin-right: 2rem;
  182. }
  183. </style>