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

## Source

```typescript
import { METHODOLOGY_DESCRIPTION, METHODOLOGY_SHARE, METHODOLOGY_TITLE } from "#configuration/strings/page.strings";
import { BADGE_MARK } from "#assets/image.assets";
import { METHODOLOGY_ACCENT } from "#configuration/constants/page.constants";
import { METHODOLOGY_ICON } from "#configuration/icons/page.icons";
import { METHODOLOGY_PAGE } from "#core/ids/page.ids";
import { registerPage } from "#domain/registries/page.registry";

registerPage({
    accent: METHODOLOGY_ACCENT,
    description: METHODOLOGY_DESCRIPTION,
    icon: METHODOLOGY_ICON,
    id: METHODOLOGY_PAGE,
    listed: true,
    load: async () => (await import("#presentation/views/methodology.view")).PAGE,
    mark: BADGE_MARK,
    order: 20,
    share: METHODOLOGY_SHARE,
    title: METHODOLOGY_TITLE,
});
```
