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

## Source

```typescript
import { PRIVACY_DESCRIPTION, PRIVACY_SHARE, PRIVACY_TITLE } from "#configuration/strings/page.strings";
import { BADGE_MARK } from "#assets/image.assets";
import { PRIVACY_ACCENT } from "#configuration/constants/page.constants";
import { PRIVACY_ICON } from "#configuration/icons/page.icons";
import { PRIVACY_PAGE } from "#core/ids/page.ids";
import { registerPage } from "#domain/registries/page.registry";

registerPage({
    accent: PRIVACY_ACCENT,
    description: PRIVACY_DESCRIPTION,
    icon: PRIVACY_ICON,
    id: PRIVACY_PAGE,
    listed: false,
    load: async () => (await import("#presentation/views/privacy.view")).PAGE,
    mark: BADGE_MARK,
    order: 70,
    share: PRIVACY_SHARE,
    title: PRIVACY_TITLE,
});
```
