| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <div class="theme-school">
- <LayoutNavigation />
- <LogicielsSchoolBanner />
- <CommonMenuScroll :menus="menus" class="mb-6" />
- <CommonStickyMenu :actions="stickyMenuActions" />
- <LogicielsSchoolPresentation />
- <LogicielsSchoolAvantages />
- <div v-if="mdAndUp" class="alt-theme">
- <LogicielsSchoolFonctionnalites />
- </div>
- <LogicielsSchoolComparatif />
- <LogicielsSchoolContact />
- <LogicielsSchoolFormations />
- <LogicielsSchoolReviews class="alt-theme"/>
- <LayoutFAQ />
- <LayoutFooterSolutions :show-school="false" />
- <LayoutFooter />
- </div>
- </template>
- <script setup lang="ts">
- import type { MenuScroll, StickyMenuAction } from "~/types/interface";
- import { StickyMenuActionType } from "~/types/enum/layout";
- import { useDisplay } from "vuetify";
- const { mdAndUp } = useDisplay()
- const menus: Array<MenuScroll> = [
- { anchor: "presentation", label: "Présentation" },
- { anchor: "benefits", label: "Avantages" },
- { anchor: "functionalities", label: "Fonctionnalités" },
- { anchor: "comparative", label: "Comparatif" },
- { anchor: "contact", label: "Contact" },
- { anchor: "webinars", label: "Wébinaires" },
- { anchor: "testimonials", label: "Témoignages" },
- ];
- 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 lang="scss">
- .theme-school {
- --primary-color: #ffffff;
- --secondary-color: #c3e5e7;
- --on-primary-color: #0e2d32;
- --primary-color-alt: #262626;
- --on-primary-color-alt: #c3e5e7;
- }
- </style>
|