import { ONTOLOGY_DESCRIPTION, ONTOLOGY_TITLE } from "#configuration/strings/page.strings"; import { ONTOLOGY_CARD_LINK } from "#configuration/icons/home.icons"; import { ONTOLOGY_ICON } from "#configuration/icons/page.icons"; import { ONTOLOGY_PAGE } from "#core/ids/page.ids"; import { registerPage } from "#domain/registries/page.registry"; registerPage({ accent: ONTOLOGY_CARD_LINK.accent, description: ONTOLOGY_DESCRIPTION, icon: ONTOLOGY_ICON, id: ONTOLOGY_PAGE, listed: true, load: async () => (await import("#presentation/views/ontology.view")).PAGE, order: 36, title: ONTOLOGY_TITLE, });