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

## Source

```typescript
import { TERMS_DESCRIPTION, TERMS_SHARE, TERMS_TITLE } from "#configuration/strings/page.strings";
import { BADGE_MARK } from "#assets/image.assets";
import { TERMS_ACCENT } from "#configuration/constants/page.constants";
import { TERMS_ICON } from "#configuration/icons/page.icons";
import { TERMS_PAGE } from "#core/ids/page.ids";
import { registerPage } from "#domain/registries/page.registry";

registerPage({
    accent: TERMS_ACCENT,
    description: TERMS_DESCRIPTION,
    icon: TERMS_ICON,
    id: TERMS_PAGE,
    listed: false,
    load: async () => (await import("#presentation/views/terms.view")).PAGE,
    mark: BADGE_MARK,
    order: 60,
    share: TERMS_SHARE,
    title: TERMS_TITLE,
});
```
