opentalent_school.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <div class="theme-school">
  3. <LayoutNavigation />
  4. <LogicielsSchoolBanner />
  5. <CommonMenuScroll :menus="menus" class="mb-6" />
  6. <CommonStickyMenu :actions="stickyMenuActions" />
  7. <LogicielsSchoolPresentation />
  8. <LogicielsSchoolAvantages />
  9. <div v-if="mdAndUp" class="alt-theme">
  10. <LogicielsSchoolFonctionnalites />
  11. </div>
  12. <LogicielsSchoolComparatif />
  13. <LogicielsSchoolContact />
  14. <LogicielsSchoolFormations />
  15. <LogicielsSchoolReviews class="alt-theme"/>
  16. <LayoutFAQ />
  17. <LayoutFooterSolutions :show-school="false" />
  18. <LayoutFooter />
  19. </div>
  20. </template>
  21. <script setup lang="ts">
  22. import type { MenuScroll, StickyMenuAction } from "~/types/interface";
  23. import { StickyMenuActionType } from "~/types/enum/layout";
  24. import { useDisplay } from "vuetify";
  25. const { mdAndUp } = useDisplay()
  26. const menus: Array<MenuScroll> = [
  27. { anchor: "presentation", label: "Présentation" },
  28. { anchor: "benefits", label: "Avantages" },
  29. { anchor: "functionalities", label: "Fonctionnalités" },
  30. { anchor: "comparative", label: "Comparatif" },
  31. { anchor: "contact", label: "Contact" },
  32. { anchor: "webinars", label: "Wébinaires" },
  33. { anchor: "testimonials", label: "Témoignages" },
  34. ];
  35. const stickyMenuActions: Array<StickyMenuAction> = [
  36. {
  37. type: StickyMenuActionType.FOLLOW_LINK,
  38. bgColor: "blue-square",
  39. iconClass: "fa-regular fa-comments icon",
  40. text: "Nous contacter",
  41. url: "/nous-contacter",
  42. },
  43. {
  44. type: StickyMenuActionType.FOLLOW_LINK,
  45. bgColor: "blue-square",
  46. iconClass: "fa-solid fa-circle-info icon",
  47. text: "Demander une demo",
  48. url: "/nous-contacter",
  49. },
  50. {
  51. type: StickyMenuActionType.FOLLOW_LINK,
  52. bgColor: "blue-square",
  53. iconClass: "fa-brands fa-readme icon",
  54. text: "Brochure",
  55. url: "https://www.opentalent.fr/fileadmin/stockage/commercial/plaquettes_commerciales/De%CC%81pliant-school_23.pdf",
  56. },
  57. {
  58. type: StickyMenuActionType.CALL_US,
  59. bgColor: "darkblue-square",
  60. iconClass: "fa-solid fa-phone icon",
  61. text: "Nous Appeler",
  62. },
  63. ];
  64. </script>
  65. <style scoped lang="scss">
  66. .theme-school {
  67. --primary-color: #ffffff;
  68. --secondary-color: #c3e5e7;
  69. --on-primary-color: #0e2d32;
  70. --primary-color-alt: #262626;
  71. --on-primary-color-alt: #c3e5e7;
  72. }
  73. </style>