Network.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <AnchoredSection id="network">
  3. <LayoutContainer>
  4. <v-row class="mt-12 center-90">
  5. <LayoutUISubTitle>
  6. Un réseau pyramidal
  7. </LayoutUISubTitle>
  8. </v-row>
  9. <v-row class="center-90">
  10. <v-col cols="12" lg="6" md="6">
  11. <LayoutUITitle>
  12. Opentalent Manager, un logiciel adapté à chacun
  13. </LayoutUITitle>
  14. <p class="pyramide-details ml-3 mt-6">
  15. Notre système s'adapte à toutes les structures de réseau pyramidal, quel que soit le nombre de niveau.
  16. </p>
  17. </v-col>
  18. <v-col cols="12" lg="6" md="6">
  19. <v-img
  20. src="/images/pages/opentalent_manager/network/Reseau_pyramidale_Opentalent_Manager.png"
  21. alt="Graphique réseau pyramidal de la CMF avec les fédérations, les écoles artistique et les structures pratiquantes"
  22. class="schema-manager"
  23. />
  24. </v-col>
  25. </v-row>
  26. </LayoutContainer>
  27. </AnchoredSection>
  28. </template>
  29. <script setup lang="ts">
  30. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  31. </script>
  32. <style scoped lang="scss">
  33. @media (min-width: 2000px) {
  34. .v-row {
  35. width: 70%;
  36. }
  37. }
  38. .pyramide-details {
  39. font-size: 2.125rem;
  40. font-weight: 400;
  41. line-height: 2.375rem;
  42. width: 40rem;
  43. max-width: 90%;
  44. }
  45. </style>