Network.vue 1.3 KB

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