opentalent_school.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <LayoutNavigation />
  3. <LogicielsSchoolBanner />
  4. <CommonMenuScroll :menus="menus" class="mb-6" />
  5. <div v-if="shouldShowStickyMenu" id="sticky-menu" class="mt-6">
  6. <CommonStickyMenu
  7. :shouldShowStickyMenu="shouldShowStickyMenu"
  8. :squaresData="squaresData"
  9. />
  10. </div>
  11. <LogicielsSchoolPresentation />
  12. <LogicielsSchoolAvantages />
  13. <LogicielsSchoolFonctionnalites />
  14. <LogicielsSchoolComparatif />
  15. <LogicielsSchoolProjet />
  16. <LogicielsSchoolFormations />
  17. <LogicielsSchoolReviews />
  18. <LayoutFAQ />
  19. <LayoutFooterSolutionsFooter />
  20. <LayoutFooter id="layout-footer" />
  21. </template>
  22. <script setup>
  23. import { ref } from "vue";
  24. const shouldShowStickyMenu = ref(true);
  25. const menus = ref([
  26. { id: "Presentation", label: "Présentation", element: null },
  27. { id: "Avantages", label: "Avantages", element: null },
  28. { id: "Fonctionnalites", label: "Fonctionnalités", element: null },
  29. { id: "Comparatif", label: "Comparatif", element: null },
  30. { id: "Contact", label: "Contact", element: null },
  31. { id: "Formations", label: "Formations", element: null },
  32. { id: "Temoignages", label: "Temoignages", element: null },
  33. ]).value;
  34. const squaresData = [
  35. {
  36. id: 1,
  37. bgColor: "blue-square",
  38. iconClass: "fa-regular fa-comments icon",
  39. text: "Nous contacter",
  40. url: "/nous-contacter",
  41. },
  42. {
  43. id: 2,
  44. bgColor: "blue-square",
  45. iconClass: "fa-solid fa-circle-info icon",
  46. text: "Demander une demo",
  47. url: "/nous-contacter",
  48. },
  49. {
  50. id: 3,
  51. bgColor: "blue-square",
  52. iconClass: "fa-brands fa-readme icon",
  53. text: "Brochure",
  54. url: "https://www.opentalent.fr/fileadmin/stockage/commercial/plaquettes_commerciales/De%CC%81pliant-school_23.pdf",
  55. },
  56. {
  57. id: 4,
  58. bgColor: "darkblue-square",
  59. iconClass: "fa-solid fa-phone icon",
  60. text: "Nous Appeler",
  61. },
  62. ];
  63. </script>
  64. <style scoped>
  65. #sticky-menu {
  66. position: sticky;
  67. top: 25rem;
  68. z-index: 10;
  69. margin-bottom: -35rem;
  70. float: right;
  71. }
  72. @media (max-width: 1800px) {
  73. #sticky-menu {
  74. top: 16rem;
  75. margin-bottom: -28rem;
  76. }
  77. }
  78. </style>