Network.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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/logiciels/manager/reseau.png"
  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>