index.vue 725 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <CommonMeta
  3. title="Opentalent - Logiciels culturels"
  4. description="Une gamme de logiciels adaptée à chaque structure culturelle"
  5. />
  6. <CommonActionMenu />
  7. <LayoutUITitlePage>
  8. LOGICIELS CULTURELS
  9. <template #subtitle>UNE GAMME DE LOGICIELS ADAPTÉE À CHAQUE STRUCTURE CULTURELLE</template>
  10. </LayoutUITitlePage>
  11. <HomeCaroussel />
  12. <HomePromotion />
  13. <HomeSolution />
  14. <div class="spacer" />
  15. <HomeEventAgenda />
  16. <HomeBesoin />
  17. <HomeReviews />
  18. <HomeHelp />
  19. <LayoutFooterPrefooter />
  20. </template>
  21. <script setup>
  22. import { useDisplay } from "vuetify";
  23. const { mdAndDown, mdAndUp, lgAndUp } = useDisplay();
  24. </script>
  25. <style scoped>
  26. .spacer {
  27. height: 2rem;
  28. }
  29. </style>