| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <template>
- <div id="solutions">
- <LayoutContainer>
- <v-row>
- <v-col cols="12">
- <h4 class="solution-title text-center">
- Ces solutions peuvent vous intéresser
- </h4>
- </v-col>
- </v-row>
- <v-row v-if="!hideArtistRow" class="row-artist">
- <v-col cols="2">
- <NuxtLink to="/opentalent_artist">
- <v-img src="/images/logo/logiciels/Artist-noir.png" class="logo" />
- </NuxtLink>
- </v-col>
- <!-- <v-col cols="2">
- <h5 class="solution-name">Opentalent Artist</h5>
- </v-col> -->
- <v-col cols="10">
- <!-- list v-chip-->
- <v-chip-group active-class="primary--text" column>
- <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="!hideManagerRow" class="row-manager">
- <v-col cols="2">
- <NuxtLink to="/opentalent_manager">
- <v-img src="/images/logo/logiciels/Manager-noir.png" class="logo" />
- </NuxtLink>
- </v-col>
- <!-- <v-col cols="2">
- <h5 class="solution-name">Opentalent Manager</h5>
- </v-col> -->
- <v-col cols="10">
- <!-- list v-chip-->
- <v-chip-group active-class="primary--text" column>
- <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="!hideSchoolRow" class="row-school">
- <v-col cols="2">
- <NuxtLink to="/opentalent_school">
- <v-img src="/images/logo/logiciels/School-noir.png" class="logo" />
- </NuxtLink>
- </v-col>
- <!-- <v-col cols="2">
- <h5 class="solution-name">Opentalent Artist</h5>
- </v-col> -->
- <v-col cols="10">
- <!-- list v-chip-->
- <v-chip-group active-class="primary--text" column>
- <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>
- import { useRoute } from "vue-router";
- const route = useRoute();
- const hideManagerRow = route.path.includes("opentalent_manager");
- const hideArtistRow = route.path.includes("opentalent_artist") || route.path.includes("formations");
- const hideSchoolRow = route.path.includes("opentalent_school") ;
- </script>
- <style scoped>
- .chip-detail {
- color: #000000;
- }
- .chip-custom {
- color: white;
- border: 1px solid #0e2d32;
- border-radius: 3rem;
- text-transform: uppercase;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 10px;
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.2em;
- }
- .row-artist,
- .row-school,
- .row-manager {
- border-top: 1px solid #d1cdc7;
- }
- .solution-name {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 1.5rem;
- line-height: 1.5rem;
- color: #0e2d32;
- }
- .row-artist,
- .row-school,
- .row-manager {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .solution-title {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 1.5rem;
- line-height: 1.5rem;
- color: #000000;
- margin-top: 2rem;
- margin-bottom: 2rem;
- text-align: center;
- }
- .logo {
- width: 15rem;
- height: 10rem;
- margin-left: .5rem;
- margin-right: 2rem;
- }
- </style>
|