| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <div id="solutions">
- <LayoutContainer>
- <v-row class="center-90">
- <v-col cols="12">
- <LayoutUISubTitle>
- NOS LOGICIELS OPENTALENT
- </LayoutUISubTitle>
- <LayoutUITitle>
- Ces solutions peuvent aussi vous intéresser
- </LayoutUITitle>
- </v-col>
- </v-row>
- <v-row
- v-if="showArtist"
- class="row-artist center-90"
- >
- <v-col cols="6" md="2">
- <NuxtLink to="/opentalent_artist">
- <v-img src="/images/logo/logiciels/Artist-noir.png" class="logo" />
- </NuxtLink>
- </v-col>
- <v-col cols="6" md="10">
- <!-- list v-chip-->
- <v-chip-group column disabled>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Orchestres</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Chorales</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Compagnies de danse</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Compagnies de théatre</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Compagnies de Cirque</span>
- </v-chip>
- </v-chip-group>
- </v-col>
- </v-row>
- <v-row
- v-if="showManager"
- class="row-manager center-90"
- >
- <v-col cols="6" md="2">
- <NuxtLink to="/opentalent_manager">
- <v-img src="/images/logo/logiciels/Manager-noir.png" class="logo" />
- </NuxtLink>
- </v-col>
- <v-col cols="6" md="10">
- <!-- list v-chip-->
- <v-chip-group column disabled>
- <v-chip class="ma-2 chip-custom" color="primary" label>
- <span class="chip-detail">Fédérations</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" color="primary" label>
- <span class="chip-detail">Confédérations</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" color="primary" label>
- <span class="chip-detail">Collectivités</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" color="primary" label>
- <span class="chip-detail">Réseaux</span>
- </v-chip>
- </v-chip-group>
- </v-col>
- </v-row>
- <v-row
- v-if="showSchool"
- class="row-school center-90"
- >
- <v-col cols="6" md="2">
- <NuxtLink to="/opentalent_school">
- <v-img src="/images/logo/logiciels/School-noir.png" class="logo" />
- </NuxtLink>
- </v-col>
- <v-col cols="6" md="10">
- <!-- list v-chip-->
- <v-chip-group column disabled>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Conservatoire</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">Écoles d'art</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">École de musique</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">École de danse</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">École de théâtre</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">École de cirque</span>
- </v-chip>
- <v-chip class="ma-2 chip-custom" label>
- <span class="chip-detail">MJC</span>
- </v-chip>
- </v-chip-group>
- </v-col>
- </v-row>
- </LayoutContainer>
- </div>
- </template>
- <script setup lang="ts">
- const props = defineProps({
- showArtist: {
- type: Boolean,
- required: false,
- default: true
- },
- showSchool: {
- type: Boolean,
- required: false,
- default: true
- },
- showManager: {
- type: Boolean,
- required: false,
- default: true
- },
- })
- </script>
- <style scoped lang="scss">
- .chip-detail {
- color: var(--on-neutral-color);
- @media (max-width: 600px) {
- width: 100%;
- text-align: center;
- }
- }
- .chip-custom {
- opacity: 1;
- color: var(--on-primary-color);
- border: 1px solid var(--primary-color);
- border-radius: 3rem;
- text-transform: uppercase;
- font-weight: 500;
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.2em;
- @media (max-width: 600px) {
- font-size: 10px !important;
- width: 90%;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- :deep(.v-chip__content) {
- width: 100%;
- }
- }
- }
- .row-artist,
- .row-school,
- .row-manager {
- display: flex;
- flex-direction: row;
- align-items: center;
- border-top: 1px solid var(--on-primary-color-alt);
- }
- .solution-title {
- font-weight: 500;
- font-size: 1.5rem;
- line-height: 1.5rem;
- color: var(--on-neutral-color);
- margin-top: 2rem;
- margin-bottom: 2rem;
- text-align: center;
- }
- .logo {
- width: 15rem;
- height: 10rem;
- margin-left: .5rem;
- margin-right: 2rem;
- }
- </style>
|