Prefooter.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!--
  2. Première section du footer (galerie des logiciels)
  3. -->
  4. <template>
  5. <footer>
  6. <LayoutContainer>
  7. <v-row>
  8. <v-col cols="4" class="text-center">
  9. <nuxt-link href="/opentalent_artist">
  10. <v-img src="/images/logo/logiciels/Artist-noir.png"/>
  11. </nuxt-link>
  12. <small class="text-logo">
  13. Orchestres, chorales, danse, théâtre, cirque
  14. </small>
  15. </v-col>
  16. <v-divider :vertical="true" />
  17. <v-col cols="4" class="text-center">
  18. <nuxt-link href="/opentalent_school">
  19. <v-img src="/images/logo/logiciels/School-noir.png"/>
  20. </nuxt-link>
  21. <small class="text-logo">
  22. Tous les établissements d'enseignement artistique
  23. </small>
  24. </v-col>
  25. <v-divider :vertical="true" />
  26. <v-col cols="3" class="text-center">
  27. <nuxt-link href="/opentalent_manager">
  28. <v-img src="/images/logo/logiciels/Manager-noir.png"/>
  29. </nuxt-link>
  30. <small class="text-logo">
  31. Fédérations, confédérations, collectivités
  32. </small>
  33. </v-col>
  34. </v-row>
  35. </LayoutContainer>
  36. </footer>
  37. </template>
  38. <script setup>
  39. </script>
  40. <style scoped lang="scss">
  41. .container {
  42. height: 172px;
  43. width: 90%;
  44. margin: 0 auto;
  45. border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
  46. }
  47. .v-img {
  48. margin-top: 2rem;
  49. height: 70px;
  50. }
  51. .v-divider {
  52. height: 4rem;
  53. border: 0.1rem solid rgb(205, 205, 205);
  54. margin-top: 3rem;
  55. opacity: 80%;
  56. }
  57. </style>