# presentation/records/ontology.record.ts

> 18 lines of code and 0 definitions.

Tree: Site tree
Language: typescript
Layer: domain
Canonical: https://banes-lab.com/anatomy/tree#file-presentation-records-ontology-record-ts
Source text: https://banes-lab.com/assets/sources/source.95edb0f7fe50ae2d43bf23f11128bf886353c579bd5776e1dbd08d44d30d7f68.generated.txt

## Source

```typescript
import { ONTOLOGY_DESCRIPTION, ONTOLOGY_SHARE, ONTOLOGY_TITLE } from "#configuration/strings/page.strings";
import { BADGE_MARK } from "#assets/image.assets";
import { ONTOLOGY_ACCENT } from "#configuration/constants/page.constants";
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_ACCENT,
    description: ONTOLOGY_DESCRIPTION,
    icon: ONTOLOGY_ICON,
    id: ONTOLOGY_PAGE,
    listed: true,
    load: async () => (await import("#presentation/views/ontology.view")).PAGE,
    mark: BADGE_MARK,
    order: 36,
    share: ONTOLOGY_SHARE,
    title: ONTOLOGY_TITLE,
});
```
