# presentation/records/information.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-information-record-ts
Source text: https://banes-lab.com/assets/sources/source.229f2dc63cd349f0f035a4c1696e59e61f6c1b3dc2ea26054ac2af1d0ec14941.generated.txt

## Source

```typescript
import { INFORMATION_DESCRIPTION, INFORMATION_SHARE, INFORMATION_TITLE } from "#configuration/strings/page.strings";
import { BADGE_MARK } from "#assets/image.assets";
import { INFORMATION_ACCENT } from "#configuration/constants/page.constants";
import { INFORMATION_ICON } from "#configuration/icons/page.icons";
import { INFORMATION_PAGE } from "#core/ids/page.ids";
import { registerPage } from "#domain/registries/page.registry";

registerPage({
    accent: INFORMATION_ACCENT,
    description: INFORMATION_DESCRIPTION,
    icon: INFORMATION_ICON,
    id: INFORMATION_PAGE,
    listed: false,
    load: async () => (await import("#presentation/views/information.view")).PAGE,
    mark: BADGE_MARK,
    order: 50,
    share: INFORMATION_SHARE,
    title: INFORMATION_TITLE,
});
```
