Prefooter.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!--
  2. Première section du footer (galerie des logiciels)
  3. -->
  4. <template>
  5. <footer>
  6. <!-- Ecrans larges -->
  7. <LayoutContainer v-if="lgAndUp">
  8. <v-row>
  9. <v-col cols="4" class="text-center">
  10. <nuxt-link to="/opentalent_artist">
  11. <v-img src="/images/logo/logiciels/Artist-noir.png"/>
  12. </nuxt-link>
  13. <small class="text-logo">
  14. Orchestres, chorales, danse, théâtre, cirque
  15. </small>
  16. </v-col>
  17. <v-divider :vertical="true" />
  18. <v-col cols="4" class="text-center">
  19. <nuxt-link to="/opentalent_school">
  20. <v-img src="/images/logo/logiciels/School-noir.png"/>
  21. </nuxt-link>
  22. <small class="text-logo">
  23. Tous les établissements d'enseignement artistique
  24. </small>
  25. </v-col>
  26. <v-divider :vertical="true" />
  27. <v-col cols="3" class="text-center">
  28. <nuxt-link to="/opentalent_manager">
  29. <v-img src="/images/logo/logiciels/Manager-noir.png"/>
  30. </nuxt-link>
  31. <small class="text-logo">
  32. Fédérations, confédérations, collectivités
  33. </small>
  34. </v-col>
  35. </v-row>
  36. </LayoutContainer>
  37. <!-- Petits écrans -->
  38. <LayoutContainer v-else>
  39. <v-row class="justify-center">
  40. <v-col cols="3" class="border-right">
  41. <nuxt-link to="/opentalent_artist">
  42. <v-img src="/images/logo/logiciels/&_Jaune.png"/>
  43. </nuxt-link>
  44. </v-col>
  45. <v-col cols="1">
  46. <v-divider :vertical="true" />
  47. </v-col>
  48. <v-col cols="3">
  49. <nuxt-link to="/opentalent_school">
  50. <v-img src="/images/logo/logiciels/&_Bleu.png"/>
  51. </nuxt-link>
  52. </v-col>
  53. <v-col cols="1">
  54. <v-divider :vertical="true" />
  55. </v-col>
  56. <v-col cols="3">
  57. <nuxt-link to="/opentalent_manager">
  58. <v-img src="/images/logo/logiciels/&_Rouge.png"/>
  59. </nuxt-link>
  60. </v-col>
  61. </v-row>
  62. </LayoutContainer>
  63. </footer>
  64. </template>
  65. <script setup lang="ts">
  66. import { useDisplay } from "vuetify";
  67. const { lgAndUp } = useDisplay()
  68. </script>
  69. <style scoped lang="scss">
  70. .container {
  71. height: 172px;
  72. width: 90%;
  73. margin: 0 auto;
  74. border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
  75. }
  76. .v-img {
  77. margin-top: 2rem;
  78. height: 70px;
  79. }
  80. .v-divider {
  81. height: 4rem;
  82. border: 0.1rem solid rgb(205, 205, 205);
  83. margin-top: 3rem;
  84. opacity: 80%;
  85. }
  86. </style>