| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <LayoutNavigation />
- <LogicielsSchoolBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu :actions="stickyMenuActions" />
- <LogicielsSchoolPresentation />
- <LogicielsSchoolAvantages />
- <LogicielsSchoolFonctionnalites />
- <LogicielsSchoolComparatif />
- <LogicielsSchoolProjet />
- <LogicielsSchoolFormations />
- <LogicielsSchoolReviews />
- <LayoutFAQ />
- <LayoutFooterSolutionsFooter />
- <LayoutFooter />
- </template>
- <script setup lang="ts">
- import { ref } from "vue";
- import { StickyMenuAction } from "~/types/interface";
- import { StickyMenuActionType } from "~/types/enum/layout";
- const menus = ref([
- { id: "Presentation", label: "Présentation", element: null },
- { id: "Avantages", label: "Avantages", element: null },
- { id: "Fonctionnalites", label: "Fonctionnalités", element: null },
- { id: "Comparatif", label: "Comparatif", element: null },
- { id: "Contact", label: "Contact", element: null },
- { id: "Formations", label: "Formations", element: null },
- { id: "Temoignages", label: "Temoignages", element: null },
- ]).value;
- const stickyMenuActions: Array<StickyMenuAction> = [
- {
- type: StickyMenuActionType.FOLLOW_LINK,
- bgColor: "blue-square",
- iconClass: "fa-regular fa-comments icon",
- text: "Nous contacter",
- url: "/nous-contacter",
- },
- {
- type: StickyMenuActionType.FOLLOW_LINK,
- bgColor: "blue-square",
- iconClass: "fa-solid fa-circle-info icon",
- text: "Demander une demo",
- url: "/nous-contacter",
- },
- {
- type: StickyMenuActionType.FOLLOW_LINK,
- bgColor: "blue-square",
- iconClass: "fa-brands fa-readme icon",
- text: "Brochure",
- url: "https://www.opentalent.fr/fileadmin/stockage/commercial/plaquettes_commerciales/De%CC%81pliant-school_23.pdf",
- },
- {
- type: StickyMenuActionType.CALL_US,
- bgColor: "darkblue-square",
- iconClass: "fa-solid fa-phone icon",
- text: "Nous Appeler",
- },
- ];
- </script>
- <style scoped>
- </style>
|